Warm tip: This article is reproduced from serverfault.com, please click

linux-Mongo服务启动或重新启动始终失败

(linux - Mongo service start or restart always fail)

发布于 2017-04-24 13:22:21

我安装了mongodb,然后创建了mongo服务:

 [Unit]
    Description=High-performance, schema-free document-oriented database
    After=network.target

    [Service]
    User=mongodb
    ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf

    [Install]
    WantedBy=multi-user.target

但是,当我启动该服务然后检查状态时,总是会收到此错误:

● mongodb.service - High-performance, schema-free document-oriented database
   Loaded: loaded (/etc/systemd/system/mongodb.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Mon 2017-04-24 13:08:55 UTC; 6min ago
  Process: 1094 ExecStart=/usr/bin/mongod --quiet --config /etc/mongod.conf (code=exited, status=48)
 Main PID: 1094 (code=exited, status=48)

Apr 24 13:08:54 ip-172-31-37-163 systemd[1]: Started High-performance, schema-free document-oriented database.
Apr 24 13:08:55 ip-172-31-37-163 systemd[1]: mongodb.service: Main process exited, code=exited, status=48/n/a
Apr 24 13:08:55 ip-172-31-37-163 systemd[1]: mongodb.service: Unit entered failed state.
Apr 24 13:08:55 ip-172-31-37-163 systemd[1]: mongodb.service: Failed with result 'exit-code'.
Questioner
Chlebta
Viewed
0
Chlebta 2017-05-09 16:03:04

问题出在配置文件和更改

bindIp:127.0.0.1,XXXX

bindIp:[127.0.0.1,XXXX]

解决了我的问题