0

在我的 Windows 7 64 位上安装 MongoDB 时,当我执行命令时

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

它给我一个错误,dbpath即无法识别开关,当我查看它的帮助时,我真的找不到这个--dbpath开关。

在我做错的地方有什么帮助吗?

4

1 回答 1

0

看起来不错,在我的系统(Windows 10)上,以下命令行可以设置为 Windows 服务。

C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe --storageEngine wiredTiger --dbpath "C:\mongodata\db" --logpath "C:\mongodata\log\mongo.log" --serviceName yourname --serviceDisplayName "your description" --install

从帮助:

C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe -help
  --dbpath arg                  directory for datafiles - defaults to \data\db\
                                which is D:\data\db\ based on the current 
                                working drive
于 2016-12-02T12:12:33.027 回答