MYSQL 雙向同步方案:

來源:互聯網
上載者:User

A 資料庫所在主機IP地址為:192.168.239.131 ,B 資料庫所在主機IP地址為:192.168.239.1 ,作業系統均為WINDOWS XP,資料庫名均為tt

一、A 資料庫需要做如下設定:

開啟 my.ini 檔案,在最後面增加幾行(log-bin指定的目錄一定要存在): 
server-id=1
log-bin=C:\MySQLLog\log-bin.log
binlog-do-db=tt
master-host=192.168.239.131
master-user=test
master-password=1234
master-port=3306
master-connect-retry=60
replicate-do-db=tt

用 root 登入mysql ,建立一個給B機登入的使用者:

GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO test@'192.168.239.131' IDENTIFIED BY '1234';

二、B 資料庫需要做如下設定:

開啟 my.ini 檔案,在最後面增加幾行(log-bin指定的目錄一定要存在): 
server-id=2
log-bin=C:\MySQLLog\log-bin.log
binlog-do-db=tt
master-host=192.168.239.1
master-user=test
master-password=1234
master-port=3306
master-connect-retry=60
replicate-do-db=tt

用 root 登入mysql ,建立一個給A機登入的使用者:

GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO test@'192.168.239.1' IDENTIFIED BY '1234';

三、重啟A 、B 資料庫

四、B庫執行
slave start;

五:A、B分別查看狀態
mysql>show master status;

六:分別刪除A、B 資料庫 Data 上當下的  master.info 檔案。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.