读取配置文件时出错。 MongoDB的

时间:2015-06-05 19:22:26

标签: mongodb installation config database

我正在通过官方教程安装MongoDB,但我在命令提示符下出错:

  

读取配置文件时出错:没有此类文件或目录

当我尝试使用此命令启动MongoDB时会发生此错误:

  

mongod.exe --config C:\ Program Files \ mongodb \ bin \ mongo.cfg

帮忙吧!

3 个答案:

答案 0 :(得分:6)

我意识到在我的情况下,探险家正在隐藏" .txt"延期。一旦我删除.txt就完美了。 .cfg文件

也是如此

答案 1 :(得分:3)

请尝试使用撇号"

mongod.exe --config "C:\Program Files\mongodb\bin\mongo.cfg"

可能是因为“程序档案”一词中的空间占用空间

答案 2 :(得分:1)

更改为双引号为我解决了问题。我试图在Windows Server 2016上安装mongo。

  

mongod.exe --config'C:\ Program Files \ MongoDB \ Server \ 3.4 \ bin \ mongod.cfg'

VS

  

mongod.exe --config“C:\ Program Files \ MongoDB \ Server \ 3.4 \ bin \ mongod.cfg”