Ubuntu18.04启动mongo报错 Error: couldn't connect to server 127.0.0.1:27017

问题描述

在终端输入mongo时,出现 Failed to connect to 127.0.0.1:27017, in(checking socket for error after poll), reason: Connection refused。
之后输入mongod,发现 exception in initAndListen: NonExistentPath: Data directory /data/db not found., terminating显示未发现/data/db文件

解决过程

参考了 https://blog.csdn.net/weixin_36094484/article/details/80468077
创建/data/db文件并修改文件权限后没有解决成功,原因是创建的/data/db只能由root用户进行读写,而mongo运行的时候是作为user。所以要更改/data/db的用户所有组或者将所有用户添加一个对/data/db的写权限。此处是参考了stackoverflow里
Bjorn Roche的回答。

最终解决

sudo chmod -R go+w /data/db

 sudo chown -R $USER /data/db

你可能感兴趣的:(ubuntu)