How to start mongo db on windows

前端 未结 5 1463
礼貌的吻别
礼貌的吻别 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条回答
  •  臣服心动
    2020-12-06 12:59

    I fixed the same using :

    Create a folder data in

    D:\project-workspace\mongodb\data

    Then Create another folder db inside data ie,

    D:\project-workspace\mongodb\data\db

    Then run the command

    mongod --dbpath D:\project-workspace\mongodb\data\db
    

    Make sure you have set environment variable for mongodb else browse

    C:\Program Files\MongoDB\Server\3.4\bin
    and then execute this =>
    mongod.exe --dbpath E:\workspace\mongodb\data

提交回复
热议问题