1. 每台電腦都必須 setup hostname and dns record
vi /etc/hosts
add IP and domain name
2. 每台電腦都必須
echo "syncme" > /etc/mongod.key
chown mongod:mongod /etc/mongod.key
3. 每台電腦都必須
vi /etc/mongod.conf
security:
authorization: enabled
keyFile: /etc/mongod.key
replication:
oplogSizeMB: 10240
replSetName: rs1
systemctl restart mongod
4. 回到 Primary 主機上
mongo --authenticationDatabase=admin -u root -p password --host 127.0.0.1
初使化 replSet
rs.initiate()
確認
rs.status()
會看到PRIMARY字眼,表示初始化完成
加入第2台DB
rs.add("192.168.1.2:27017")
加入第3台DB
rs.add("192.168.1.3:27017")
依此類推
- The End -
沒有留言:
張貼留言