我使用安装 MongoDBsudo 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。
好的,我的问题通过以下步骤得到解决
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
notmongod.conf
,所以我编辑/etc/systemd/system/mongodb.service
并将 mongod.conf 更改为 mongodb.conf之后,我做了第 3 步和第 4 步,一切正常。