對于使用中的已有了一些數(shù)據(jù)庫的 MySQL, 如何改造成雙主呢? 這里寫一篇文章, 詳細(xì)記錄操作步驟. 聽取各位的意見. 這里假設(shè)有兩臺服務(wù)器: A 和 B. 要讓他們互為主, 但實際使用時, 不同的服務(wù)器只服務(wù)不同的 db, 避免出現(xiàn)數(shù)據(jù)沖突. 1. 修改 nginx 配置, 掛維護
這里假設(shè)有兩臺服務(wù)器: A 和 B. 要讓他們互為主, 但實際使用時, 不同的服務(wù)器只服務(wù)不同的 db, 避免出現(xiàn)數(shù)據(jù)沖突.
這一步很重要. 你需要告訴你的用戶, 你的網(wǎng)站在維護, 同時要確保不會再出現(xiàn)數(shù)據(jù)庫寫操作.
另外, 還要停止 crontab 任務(wù).
Server A:
mysqldump -uroot -p --all-databases > a_dbdump_all.sql gzip a_dbdump_all.sql
Server B:
mysqldump -uroot -p --all-databases > b_dbdump_all.sql gzip b_dbdump_all.sql
把線上數(shù)據(jù)庫備份到本地
scp test@server_a:~/a_dbdump_all.sql.gz . scp test@server_b:~/b_dbdump_all.sql.gz .
Server A:
GRANT REPLICATION SLAVE ON *.* TO 'userx'@'server_b' IDENTIFIED BY 'xxxxx';
Server B:
GRANT REPLICATION SLAVE ON *.* TO 'userx'@'server_a' IDENTIFIED BY 'xxxxx';
這一步是手工將兩臺服務(wù)器數(shù)據(jù)庫(基準(zhǔn)數(shù)據(jù))同步.
Server A:
mysqldump -uroot -p --databases db1 > a_dbdump.sql scp a_dbdump.sql test@server_b:~
Server B:
mysqldump -uroot -p --databases db2 > b_dbdump.sql scp b_dbdump.sql test@server_a:~
Server A:
source b_dbdump.sql
Server B:
source a_dbdump.sql
Server A:
[mysqld] server-id=1 log-bin=mysql-bin log-slave-updates binlog-ignore-db=mysql binlog-ignore-db=test binlog-ignore-db=information_schema binlog-ignore-db=performance_schema replicate-ignore-db=mysql replicate-ignore-db=test replicate-ignore-db=information_schema replicate-ignore-db=performance_schema master-connect-retry=10Server B:[mysqld] server-id=2 log-bin=mysql-bin log-slave-updates binlog-ignore-db=mysql binlog-ignore-db=test binlog-ignore-db=information_schema binlog-ignore-db=performance_schema replicate-ignore-db=mysql replicate-ignore-db=test replicate-ignore-db=information_schema replicate-ignore-db=performance_schema master-connect-retry=10
注意, 他們的 server-id 不相同.
重啟 MySQL.
Server A:
mysql -hserver_b -uuserx -pxxxxx
Server B:
mysql -hserver_a -uuserx -pxxxxx
Server A:
FLUSH TABLES; show master status;
會顯示這樣的信息.
***************************1. row ***************************File: mysql-bin.000001Position:106Binlog_Do_DB:Binlog_Ignore_DB: mysql,test,information_schema,performance_schema 1 row inset(0.00 sec)
記錄 File 和 Position, 這時 binlog 的當(dāng)前位置, 因為 Slave 要從這個位置開始同步數(shù)據(jù).
Server B:
CHANGE MASTER TO MASTER_HOST='server_a'; CHANGE MASTER TO MASTER_USER='userx'; CHANGE MASTER TO MASTER_PASSWORD='xxxxx'; CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000001', MASTER_LOG_POS=106; start slave; show slave status\G
同樣的, 在 Server A 上也啟動同步 Slave 進程.
因為我們確保了沒有數(shù)據(jù)庫寫操作, 所以不需要 FLUSH TABLES WITH READ LOCK;.
在不同的數(shù)據(jù)庫上執(zhí)行一些更新數(shù)據(jù)的操作, 看看數(shù)據(jù)是否同步過去了.
恢復(fù) crontab 任務(wù)
修改 nginx, 撤下維護網(wǎng)頁, 恢復(fù)服務(wù)
如果你有什么問題, 或者發(fā)現(xiàn)里這些步驟的不足, 歡迎評論!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com