标签:文件中 config nal bsp utils ons util 指定 iter
官方文档:https://docs.mongodb.com/manual/replication/
启动参数:
通过linux的包管理器(例如:yum)安装的mongodb会产生一个默认的配置文件:/etc/mongod.conf,
通过源码安装的话,需要自己指定一个配置文件。
一种是命令行参数mongod --replSet="setname"
另一种是配置文件中添加replication.replSetName="setname"
启动所有mongodb实例后,登录其中一个进行设置:
相关官方文档:https://docs.mongodb.com/manual/reference/method/js-replication/
s = { _id: <string>, members: [ { _id: <int>, host: <string>,
arbiterOnly: <boolean>, priority: <number> }, ... ],
}
rs.initiate(s)初始化或者调用rs.reconfig(s)重新设置.
通过rs.conf()查看配置
标签:文件中 config nal bsp utils ons util 指定 iter
原文地址:https://www.cnblogs.com/CLAYJJ/p/12740010.html