ERROR: child process failed, exited with error number 100

启动mogodb的时候出现错误提示:ERROR: child process failed, exited with error number 100

出现这个错误的原因是:服务器不正常关机。


我的服务器的mongodb安装路径为:

/opt/mongodb-linux-i686-2.4.9/bin

mongodb.conf配置文件的路径为:

/opt/mongodb-linux-i686-2.4.9/bin/mongodb.conf

mongodb.conf配置文件内容为:

[root@localhost bin]# cat mongodb.conf
dbpath=/opt/mongodb/data/db #数据文件存放目录
logpath=/opt/mongodb/data/logs/mongodb.log #日志文件存放目录
port = 27017  #端口
fork = true  #以守护程序的方式启用,即在后台运行
nohttpinterface = true

================================================================================


处理方法:

1)执行修复命令:./mongod -f mongodb.conf --repair

ERROR: child process failed, exited with error number 100_第1张图片


2)启动mongodb:./mongod -f mongodb.confERROR: child process failed, exited with error number 100_第2张图片


3)测试是否启动成功:./mongo

ERROR: child process failed, exited with error number 100_第3张图片

你可能感兴趣的:(MongoDb)