课程/MongoDB/数据库
MongoDB复制集—认识复制集
-
-
白羽玄天
2017-06-16
- 复制集的特点:
1.主是唯一的,但不是固定的。
2.由大多数据原则保证数据的一致性
3.从库无法写入
4.相对于传统的主从结构,复制集可以自动容灾。
-
0赞 · 0采集
-
-
qq_南夏人_04329947
2016-11-02
- rs.status()
rs.conf()
rs.stepDown(500)
use admin
db.shutdownServer()
------------------
create replcaSet
1.start all mongod with same replSetName
2.mongod --port 28001
3.rs.initiate()
4.rs.add('host:port')
5.rs is ok,use us.status() to show() the status
if you want read data from the secondary replset,use rs.slaveOk() or
I find it useful to put the default configuration in ~/.mongorc.js and custom configurations in replStart.js or adminStart.js or whatever
-
0赞 · 0采集
-
-
Backkom007
2015-11-10
- 很不错,收益颇多。不知道下节的实战什么时候出来
-
0赞 · 0采集
-
-
leo0123456789
2015-10-29
- 讲的很清晰!还想听复制集的搭建!
-
0赞 · 0采集