无法在 Ubuntu 16.10 上启动 MongoDB



我正在尝试在ubuntu 16.10上安装mongodb,尽管它没有在支持的版本中列出。我第一次在尝试启动mongo shell时遇到这个错误:

MongoDB shell version v4.0.0
connecting to: mongodb://127.0.0.1:27017
2018-07-12T11:15:00.464+0200 E QUERY    [js] Error: couldn't connect 
to server 127.0.0.1:27017, connection attempt failed: SocketException: 
Error connecting to 127.0.0.1:27017 :: caused by :: Connection refused 
:
connect@src/mongo/shell/mongo.js:251:13
@(connect):1:6
exception: connect failed

我试着运行sudo service mongod start,但我得到了Unit mongod.service not found.我还尝试修改mongodb.service文件,检查锁定的文件,运行修复命令并重新安装mongo。

mongod.conf中的指定位置找不到日志文件,在/var/log中没有mongodb目录。

您需要在systemd中创建mongodb服务。

sudo vim /etc/systemd/system/mongodb.service

内容:

[Unit]
Description=High-performance, schema-free document-oriented database
After=network.target
[Service]
LimitFSIZE=infinity
LimitCPU=infinity
LimitAS=infinity
LimitNOFILE=64000
LimitNPROC=64000
User=mongodb
ExecStart=/usr/bin/mongod --config /etc/mongod.conf
[Install]
WantedBy=multi-user.target

启动时自动启动:

sudo systemctl enable mongodb

启动/停止/状态:

sudo systemctl start/stop/status mongodb
sudo service mongodb start/stop/status

相关内容

  • 没有找到相关文章