溫馨提示×

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

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

搭建MySQL5.7的多源復(fù)制方法

發(fā)布時(shí)間:2020-05-28 17:10:58 來(lái)源:網(wǎng)絡(luò) 閱讀:229 作者:三月 欄目:MySQL數(shù)據(jù)庫(kù)

下面講講關(guān)于搭建MySQL5.7的多源復(fù)制方法,文字的奧妙在于貼近主題相關(guān)。所以,閑話就不談了,我們直接看下文吧,相信看完搭建MySQL5.7的多源復(fù)制方法這篇文章你一定會(huì)有所受益。

MySQL5.7多源復(fù)制的實(shí)驗(yàn)

環(huán)境:

node1: 192.168.2.171 主庫(kù)1

node3: 192.168.2.170 主庫(kù)2

node2: 192.168.2.172 歸檔用的從庫(kù)


1、node2上需要配置復(fù)制過(guò)濾掉mysql庫(kù):

replicate_wild_ignore_table=mysql.% 

replicate_wild_ignore_table=test.%

### 5.7上可以直接使用 stop slave; CHANGE REPLICATION FILTER REPLICATE_WILD_IGNORE_TABLE = ('mysql.%','test.%');  start salve;動(dòng)態(tài)修改復(fù)制過(guò)濾庫(kù)。


2、先將node1、node3上的備份mysqldump -uxx -pxx -q --single-transaction --master-data=2 導(dǎo)入到node2上。


3、在node2上配置主從復(fù)制

node2上執(zhí)行:

change master to 

  master_host='192.168.2.171',

  master_user='rpl',

  master_password='rpl',

  master_port=3306,

  master_log_file='mysql-bin.000001',

  master_log_pos=4 for channel 'master-1';


change master to 

  master_host='192.168.2.170',

  master_user='rpl',

  master_password='rpl',

  master_port=3306,

  master_log_file='mysql-bin.000001',

  master_log_pos=12 for channel 'master-2';


啟動(dòng)復(fù)制:

start slave for channel 'master-1';

start slave for channel 'master-2';


查看狀態(tài):

show slave status for channel 'master-1'\G

show slave status for channel 'master-2'\G


停止:

stop slave for channel 'master-1';

stop slave for channel 'master-2';


清空同步信息和日志:

reset slave for channel 'master-1';

reset slave for channel 'master-2';


刷下relaylog:

flush relay logs for channel 'master-1';

flush relay logs for channel 'master-2';

對(duì)于以上搭建MySQL5.7的多源復(fù)制方法相關(guān)內(nèi)容,大家還有什么不明白的地方嗎?或者想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。 

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI