您好,登錄后才能下訂單哦!
本篇文章為大家展示了MongoDB數(shù)據(jù)庫中怎么實現(xiàn)M-S主從復制,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
[root@localhost ~]# mkdir /data/db/master
[root@localhost ~]# mkdir /data/db/slave
主:只需要帶上--master參數(shù),表明這是個主就可以了,相當?shù)姆奖恪?br/>
[root@localhost ~]# /usr/local/bin/mongod --master
-dbpath=/data/db/master -port=11536 &
[1] 10939
[root@localhost ~]# Mon
Jul 25 20:21:59 [initandlisten] MongoDB
starting : pid=10939 port=11536 dbpath=/data/db/master
master=1 32-bit
從:帶上--slave參數(shù)指明是個從,指定--source,主的地址和端口,就可以了,比MYSQL方便很多。
[root@localhost bin]# /usr/local/bin/mongod -port
11537 --slave -dbpath=/data/db/slave --source 127.0.0.1:11536
Mon Jul 25 20:25:52 [initandlisten] MongoDB
starting : pid=11158 port=11537 dbpath=/data/db/slave
slave=1 32-bit
新開一個終端,登錄11536(主),并寫入一條記錄
[root@localhost ~]# /usr/local/bin/mongo --port=11536
MongoDB shell version: 1.8.2
connecting to: 127.0.0.1:11536/test
> use brucezuo
switched to db brucezuo
> db.createCollection("table1")
{ "ok" : 1 }
> db.table1.insert({id:1,name:"zxy",age:29})
>
新開一個終端,登錄11537(從),查看數(shù)據(jù)是否一致
[root@localhost ~]# /usr/local/bin/mongo --port=11537
MongoDB shell version: 1.8.2
connecting to: 127.0.0.1:11537/test
> show dbs
admin (empty)
brucezuo 0.0625GB
local 0.0625GB
> use brucezuo
switched to db brucezuo
> db.table1.find()
{ "_id" : ObjectId("4e2e348ed502dbae1aee469e"), "id" : 1, "name" : "zxy", "age" : 29 }
>
上述內(nèi)容就是MongoDB數(shù)據(jù)庫中怎么實現(xiàn)M-S主從復制,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。