首先
下载的mongodb有bug,需要自己手动fix,这种只是对特定版本有问题,并非所有版本都有这个问题,
SeLinux
另外,一定要把selinux设置为disabled或者permissive
问题描述
sudo systemctl status mongod.service
看到服务起不来,于是打开log文件:
cat /var/log/mongodb/mongod.log
有如下问题,是因为无法创建pid文件
*****SERVERRESTARTED***** ERROR:Cannotwritepidfileto/var/run/mongodb/mongod.pid:Nosuchfileordirectory
Centos7系统每次会把/var/run下面的一些项目清理,所以下次重起来的时候就没有了这个文件了,现在的systemd启动的话,没有什么好办法处理这个文件,因为systemd启动就是执行一个命令:
/usr/bin/mongod --quiet -f /etc/mongod.conf run
处理方案
完整解决方案:
原文链接:https://www.f2er.com/centos/378211.html