无法启动mongodb服务:/ data / db not found

时间:2018-04-19 00:01:02

标签: mongodb opensuse mongo-shell tumbleweed

我在openSUSE Tumbleweed上使用MongoDB 3.6.2。今天当我试图打开mongo shell时出现连接错误。当我使用

检查mongodb.service的状态时
sudo systemctl status mongodb

显示

Active: failed

没有太多有用的信息。然后我检查了

sudo mongod --repair

我发现了以下错误:

STORAGE  [initandlisten] exception in initAndListen: NonExistentPath: Data directory /data/db not found., terminating

所以我去检查我的/etc/mongodb.conf文件,存储部分如下所示:

# Where and how to store data.
storage:
  dbPath: /var/lib/mongodb
  journal:
    enabled: true
#  engine: mmapv1
#  mmapv1:
#  wiredTiger: true

,网络部分如下所示:

net:
  port: 27017
  bindIp: 127.0.0.1,::1
  ipv6: true

此文件的其他部分不太可能导致此错误,因此我省略了它们。

我认为我的机器上没有打开ipv6,但这不应该导致错误,因为我试图设置

ipv6: false

它仍然无效。

问题是,我通常将mongodb作为一项服务,并使其能够在启动时自动启动

sudo systemctl start mongodb
sudo systemctl enable mongodb

直到今天这个工作正常。但是,当我手动运行时

sudo mongod --dbpath /var/lib/mongodb --port 27017

它正常工作。所以似乎mongodb仍然无法识别新的dbpath / var / lib / mongodb。我确实跑了

sudo mongod --config /etc/mongodb.conf

但看起来这没有帮助。

请指教。我每次都必须手动指定--dbpath吗?我可以继续使用.conf文件将mongodb作为服务运行吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

解决:

事实证明,ipv6设置确实很重要。我将/etc/mongodb.conf文件更改为:

# What type of connections to allow.
net:
  port: 27017
  bindIp: 127.0.0.1
  ipv6: false

然后

sudo mongod --config /etc/mongodb.conf

在我这样做后,我尝试再次启动服务,但得到了同样的错误。我去检查位于/var/log/mongodb/mongod.log的日志,发现以下错误:

2018-04-18T21:02:36.561-0400 E STORAGE  [initandlisten] WiredTiger error (13) [1524099756:561216][4061:0x7f107fa1b9c0], file:WiredTiger.wt, connection: /var/lib/mongodb/WiredTiger.turtle: handle-open: open: Permission denied
2018-04-18T21:02:36.561-0400 E -        [initandlisten] Assertion: 28595:13: Permission denied src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp 413
2018-04-18T21:02:36.562-0400 I STORAGE  [initandlisten] exception in initAndListen: Location28595: 13: Permission denied, terminating

所以我这样做了:

sudo chown -R mongodb:mongodb /var/lib/mongodb/

然后我使用

启动了服务
sudo systemctl start mongodb

它正确启动了!

所以解决方案是:

  1. 中删除,::1
    net:
      port: 27017
      bindIp: 127.0.0.1,::1
      ipv6: false
    
  2. 并确保ipv6: false,因为我的机器上禁用了ipv6。

    1. 确保您拥有数据路径的正确权限,我的情况是/var/lib/mongodb
    2. 感谢。