我在Windows 10环境中。 默认情况下,My mongod.cfg文件的内容如下,即
# mongod.conf
systemLog:
destination: file
path: c:\data\log\mongod.log
storage:
dbPath: c:\data\db
这时我将通过CMD命令启动MongoDB,即
net start mongodb
它将会运行。
现在我必须使用副本集,为此,我必须对配置文件进行一些更改,即我必须添加一些代码来访问复制,即
# mongod.conf
systemLog:
destination: file
path: c:\data\log\mongod.log
storage:
dbPath: c:\data\db
net:
bindIp: 0.0.0.0
port: 27017
replication:
replSetName: test
之后,当我通过命令net start MongoDB启动服务时,它将返回错误,即
The service is not responding to the control function.
More help is available by typing NET HELPMSG 2186.
我不确定这是什么?如果有人对此有任何想法?我怎样才能解决这个问题?任何帮助表示赞赏。