溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MongoDB數(shù)據(jù)庫中怎么實現(xiàn)M-S主從復制

發(fā)布時間:2021-07-19 11:20:49 來源:億速云 閱讀:133 作者:Leah 欄目:數(shù)據(jù)庫

本篇文章為大家展示了MongoDB數(shù)據(jù)庫中怎么實現(xiàn)M-S主從復制,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

  1. [root@localhost ~]# mkdir /data/db/master

 [root@localhost ~]# mkdir /data/db/slave


主:只需要帶上--master參數(shù),表明這是個主就可以了,相當?shù)姆奖恪?br/>

  1. [root@localhost ~]# /usr/local/bin/mongod --master
    -dbpath=/data/db/master -port=11536 &

  2. [1] 10939

  3. [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方便很多。

  1. [root@localhost bin]# /usr/local/bin/mongod -port
    11537 --slave -dbpath=/data/db/slave --source 127.0.0.1:11536

  2. Mon Jul 25 20:25:52 [initandlisten] MongoDB
    starting : pid=11158 port=11537 dbpath=/data/db/slave
    slave=1 32-bit

新開一個終端,登錄11536(主),并寫入一條記錄

  1. [root@localhost ~]# /usr/local/bin/mongo --port=11536

  2. MongoDB shell version: 1.8.2

  3. connecting to: 127.0.0.1:11536/test

  4. > use brucezuo

  5. switched to db brucezuo

  6. > db.createCollection("table1")

  7. { "ok" : 1 }

  8. > db.table1.insert({id:1,name:"zxy",age:29})

  9. >

新開一個終端,登錄11537(從),查看數(shù)據(jù)是否一致

  1. [root@localhost ~]# /usr/local/bin/mongo --port=11537

  2. MongoDB shell version: 1.8.2

  3. connecting to: 127.0.0.1:11537/test

  4. > show dbs

  5. admin (empty)

  6. brucezuo 0.0625GB

  7. local 0.0625GB

  8. > use brucezuo

  9. switched to db brucezuo

  10. > db.table1.find()

  11. { "_id" : ObjectId("4e2e348ed502dbae1aee469e"), "id" : 1, "name" : "zxy", "age" : 29 }

  12. >

上述內(nèi)容就是MongoDB數(shù)據(jù)庫中怎么實現(xiàn)M-S主從復制,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(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)容。

AI