Mongodb can't start

后端 未结 6 1111
暖寄归人
暖寄归人 2020-12-08 21:48

today I updated my Mongo.. mongodb-stable (from 10gen repo)

but my service has down. the following command not working

$ sudo service mongodb start
         


        
6条回答
  •  抹茶落季
    2020-12-08 22:17

    In shell launching $ mongo and # mongo I was able to find out that

    • /data/db is not present
      sudo mkdir -p /data/db
    • mongod is now an upstart
      sudo start --system mongod

    (valid for Ubuntu 14.04 trusty)

提交回复
热议问题