我首先尝试通过mongo
进行连接,然后获得以下内容:
Error: couldn't connect to server 127.0.0.1:<port> at src/mongo/shell/mongo.js:145
exception: connect failed
首先,我根据答案here尝试了以下内容:
sudo mongod.lock
文件sudo -u mongodb mongod -f /etc/mongodb.conf --repair
我收到错误Can't specify both --journal and --repair options
。
然后,我尝试使用常规mongo --repair
,并获得以下内容:
file names: a list of files to run. files have to end in .js and will exit after unless --shell is specified
解决这两个问题的方法是什么,或解决这个问题的方法是什么?感谢。
答案 0 :(得分:0)
通过重新启动服务器,问题得以解决:
service mongodb restart
在此之后,它开始正常。