mongod shell doesn't start, data/db doesn't exsist

后端 未结 3 1719
心在旅途
心在旅途 2020-12-10 21:13

When I start mongod trowed error. What is the problem?

root@cs12867:~# mongod
mongod --help for help and startup options
Sun Dec 22 15:37:44.081 [initandlist         


        
3条回答
  •  春和景丽
    2020-12-10 21:43

    As I see from the problem that creating the data/db directory will fix your problem.

    Create that and then add like this if you have directory path in c drive.

    mongod --dbpath "c://data/db"

    After setting the dbpath you should start the mongodb as service.

    sudo service mongodb start
    

提交回复
热议问题