mongodb service is not starting up

前端 未结 21 706
野的像风
野的像风 2020-12-02 05:16

I\'ve installed the mongodb 2.0.3, using the mongodb-10gen debian package. Everything went well, except the service which is installed by default is not starting up when com

21条回答
  •  情歌与酒
    2020-12-02 05:43

    I was bored of this problem so I decided to create a shell script to restore my mongo data base easily.

    #!/bin/sh
    sudo rm /var/lib/mongodb/mongod.lock
    sudo -u mongodb mongod -f /etc/mongodb.conf --repair
    sudo service mongodb start
    

    http://ideone.com/EuqDZ8

提交回复
热议问题