How to start mongo db on windows

前端 未结 5 1436
礼貌的吻别
礼貌的吻别 2020-12-06 12:19

I am new to mongo, and I am trying to install mongo on my windows system. I am following THIS tutorial, but when I do

 C:\\mongodb\\bin\\mongod.         


        
5条回答
  •  -上瘾入骨i
    2020-12-06 12:37

    MongoDB requires a data directory to store all data. MongoDB’s default data directory path is \data\db.

    Create this folder

    md \data\db
    

    You can specify an alternate path for data files using the --dbpath option to mongod.exe, for example:

    C:\mongodb\bin\mongod.exe --dbpath d:\test\mongodb\data
    

    If your path includes spaces, enclose the entire path in double quotes,

    for example:

    C:\mongodb\bin\mongod.exe --dbpath "d:\test\mongo db data"
    

    Read more in detail

提交回复
热议问题