我想尝试mongodb副本集。我遵循《 MongoDB:权威指南》中的步骤。
$ mongo --nodb
然后在mongo shell中:
replicaSet = new ReplicaSet({nodes: 3})
replicaSet.startSet()
然后终端重复输出:
[rsStart] replSet can't get local.system.replset config from self or any seed (EMPTYCONFIG)
怎么了
最佳答案
你需要做
rs.initiate()
您也可以这样尝试
replicaSet.startSet();replicaSet.initiate()
http://docs.mongodb.org/manual/reference/method/rs.initiate/