我安装了 MongoDB,sudo apt install mongo-org
并按照说明启动,一切正常,但是当我重新启动系统时,MongoDB 服务器出现故障
● mongodb.service - High-performance, schema-free document-oriented >database
Loaded: loaded (/etc/systemd/system/mongodb.service; enabled; vendor prese>
Active: failed (Result: exit-code) since Mon 2021-02-15 09:14:37 IST; 2min>
Process: 836 ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf (c>
Main PID: 836 (code=exited, status=48)
Feb 15 09:14:05 ubuntu systemd[1]: Started High-performance, schema-free docume>
Feb 15 09:14:37 ubuntu systemd[1]: mongodb.service: Main process exited, code=e>
Feb 15 09:14:37 ubuntu systemd[1]: mongodb.service: Failed with result 'exit-co>
我尝试更改 lib/MongoDB 和 log/mongodb 的权限,将打开文件的 ulimit 设置为 64000,但对我没有任何作用。
到目前为止,我所做的工作是在每次重启时重新安装 MongoDB。
答案1
好的,我的问题通过以下步骤得到解决
sudo apt --purge autoremove mongo-org*
sudo apt install mongodb
sudo service mongodb start
sudo service mongodb status
此时会出现错误"couldn't open /etc/mongod.conf, No such file in directory"
在检查 /etc 时,我发现它mongodb.conf
不包含mongod.conf
,因此我编辑/etc/systemd/system/mongodb.service
并将 mongod.conf 更改为 mongodb.conf
之后,我执行了步骤 3 和 4,并且一切正常。