mongoDB主從複製配置,mongodb主從複製

來源:互聯網
上載者:User

mongoDB主從複製配置,mongodb主從複製

在mongoDB 設定檔配置中講了怎麼進行配置,這裡我們就是使用設定檔進行master/slave 的相關配置實現主從複製:

一、主從伺服器的配置:

1、主伺服器設定檔:master.conf

port=27017

# 主伺服器連接埠

dbpath=E:\DB\mongodb\data

#主服務進程資料存放目錄

logpath=mongodb.log

#主服務日誌存放目錄

master=true

#配置為主服務

logappend=true

#進行日誌的追加而不是清空原有日誌再添加

maxConns=1024

#資料庫最大串連數

 

2、從伺服器設定檔:slave.conf

port=27018

#從伺服器連接埠

dbpath=E:\DB\mongodb\data\slavepath

#從服務進程資料存放目錄

logpath=mongodbslave.log

#從服務日誌存放目錄

logappend=true

#實現日誌的追加

slave=true      

#配置為從服務  

source=127.0.0.1:27017

#同步的主服務地址

autoresync=true  

#實現自動同步

 

3、啟動主伺服器:

 

4、啟動從伺服器:

 

5、用戶端串連主伺服器,並進行操作:

 

6、在master上添加資料,並儲存:


7、用戶端串連從伺服器:


8、從資料庫資料的查詢 


從查詢結果我們可以看到從庫中的資料和主庫進行了同步

串連情況也可以查看日誌

這裡進行了一個master   和 一個slave之間的複製,而複製部署方式還有複雜的,具體的在下一篇學習!

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.