mongodb 28017打不开怎么解决
1、无法打开MongoDB监控页面
问题:
无法访问MongoDB监控页面: http://10.1.xx.xx:28017/
解决办法:
删除mongod.lock文件,这个文件在MongoDB的数据库目录下,默认是/data/db。这是最常见的问题了,产生原因是MongoDB没有正常结束(比如被kill -9杀掉或是其他意外情况导致中断)。在关闭MongoDB时最好使用kill -2命令,避免数据文件损坏。
--查找mongod.lock文件 [root@racdb ~]# find / -name "mongod.lock" /var/lib/mongo/mongod.lock --删除mongod.lock文件 [root@racdb ~]# rm -f /var/lib/mongo/mongod.lock [root@racdb mongo]# ps -ef|grep mongo root 12946 10855 0 12:46 pts/1 00:00:00 grep mongo root 22511 1 0 Jan27 ? 00:21:40 mongod -f /etc/mongod.conf --重启mongodb [root@racdb ~]# mongod -f /etc/mongod.conf about to fork child process, waiting until server is ready for connections. forked process: 13006 all output going to: /var/log/mongo/mongod.log --再次访问可以打开了 http://10.1.xx.xx:28017/
2、无法打开List all commands页面
问题:
打开http://10.1.xx.xx:28017/后
点击List all commands会出现如下错误:
REST is not enabled. use --rest to turn on. check that port 28017 is secured for the network too.
解决办法:
启动MongoDB时加上–rest参数
# mongod -f /etc/mongod.conf --rest
–之后再次打开命令介绍页面
http://10.1.xx.xx:28017/_commands
3、MongoDB无法启动的其它问题
http://dmyz.org/archives/423
云海天教程网,大量的免费MongoDB入门教程,欢迎在线学习!
来源:PY学习网:原文地址:https://www.py.cn/article.html