Configuring MongoDB on Windows

后端 未结 6 701
耶瑟儿~
耶瑟儿~ 2021-02-08 10:49

I am trying to set up MongoDB on Windows, and the online docs seem far from accurate.

Under \"Configure a Windows Service\" part, step 1 mentions to create a config file

6条回答
  •  故里飘歌
    2021-02-08 11:23

    Here's an example of a mongodb.config file for Windows.

    ##store data here
    dbpath=C:\mongodb\data\db
    
    ##all output go here
    logpath=C:\mongodb\data\log\mongo.log
    
    ##log read and write operations
    diaglog=3
    

提交回复
热议问题