溫馨提示×

溫馨提示×

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

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

mysql實現(xiàn)主從復制

發(fā)布時間:2020-08-06 17:08:24 來源:ITPUB博客 閱讀:152 作者:安全劍客 欄目:MySQL數(shù)據(jù)庫
Mysql的 Replication 是一個異步的復制過程(mysql5.1.7以上版本分為異步復制和半同步兩種模式),從一個 Mysql instace(我們稱之為 Master)復制到另一個 Mysql instance(我們稱之 Slave)。在 Master 與 Slave 之間的實現(xiàn)整個復制過程主要由三個線程來完成,其中兩個線程(Sql線程和IO線程)在 Slave 端,另外一個線程(IO線程)在 Master 端。

mysql實現(xiàn)主從復制

1.1. mysql主從的原理

1.1.1. Replication 線程

Mysql的 Replication 是一個異步的復制過程(mysql5.1.7以上版本分為異步復制和半同步兩種模式),從一個 Mysql instace(我們稱之為 Master)復制到另一個 Mysql instance(我們稱之 Slave)。在 Master 與 Slave 之間的實現(xiàn)整個復制過程主要由三個線程來完成,其中兩個線程(Sql線程和IO線程)在 Slave 端,另外一個線程(IO線程)在 Master 端。

要實現(xiàn) MySQL 的 Replication ,首先必須打開 Master 端的Binary Log(mysql-bin.xxxxxx)功能,否則無法實現(xiàn)。因為整個復制過程實際上就是Slave從Master端獲取該日志然后再在自己身上完全 順序的執(zhí)行日志中所記錄的各種操作。打開 MySQL 的 Binary Log 可以通過在啟動 MySQL Server 的過程中使用 “—log-bin” 參數(shù)選項,或者在 my.cnf 配置文件中的 mysqld 參數(shù)組([mysqld]標識后的參數(shù)部分)增加 “l(fā)og-bin” 參數(shù)項。

1.1.2. MySQL 復制的基本過程:

1.Slave 上面的IO線程連接上 Master,并請求從指定日志文件的指定位置(或者從最開始的日志)之后的日志內容;

Master 接收到來自 Slave 的 IO 線程的請求后,通過負責復制的 IO 線程根據(jù)請求信息讀取指定日志指定位置之后的日志信息,返回給 Slave 端的 IO 線程。返回信息中除了日志所包含的信息之外,還包括本次返回的信息在 Master 端的 Binary Log 文件的名稱以及在 Binary Log 中的位置;

Slave 的 IO 線程接收到信息后,將接收到的日志內容依次寫入到 Slave 端的Relay Log文件(mysql-relay-bin.xxxxxx)的最末端,并將讀取到的Master端的bin-log的文件名和位置記錄到master- info文件中,以便在下一次讀取的時候能夠清楚的高速Master“我需要從某個bin-log的哪個位置開始往后的日志內容,請發(fā)給我”

Slave 的 SQL 線程檢測到 Relay Log 中新增加了內容后,會馬上解析該 Log 文件中的內容成為在 Master 端真實執(zhí)行時候的那些可執(zhí)行的 Query 語句,并在自身執(zhí)行這些 Query。這樣,實際上就是在 Master 端和 Slave 端執(zhí)行了同樣的 Query,所以兩端的數(shù)據(jù)是完全一樣的。

1.2. db01

1.2.1. 在主庫上開啟的binlog日志

[root@db01 ~]# cat /etc/my.cnf
[mysqld]
log-bin
server-id=160

1.2.2. 重啟數(shù)據(jù)庫

[root@db01 ~]# systemctl restart mysqld

1.2.3. 授權,允許能夠遠程連接的主機(replicaiton)

mysql> grant replication slave, replication client on *.* to 'repl'@'172.16.1.52' identified by 'All123.com';

1.2.4. 導出主庫當前數(shù)據(jù)

[root@db01 ~]# mysqldump -uroot -pBgx123.com \
--all-databases \
--single-transaction \
--master-data=1 \
--flush-logs > /root/db-$(date +%F)-all.sql

1.2.5. 拷貝備份的數(shù)據(jù)至從庫

[root@db01 ~]# scp db-2018-10-23-all.sql root@172.16.1.52:/tmp

1.3. db02

在從庫上啟動數(shù)據(jù)庫,然后倒入數(shù)據(jù)

1.3.1. 檢查是否能使用遠程賬戶登錄

[root@slave ~]# mysql -h 172.16.1.51 -urep -pRep123.com

1.3.2. 修改配置文件/etc/my.cnf,從需開啟binlog

server-id=161

1.3.3. 重啟MySQL的數(shù)據(jù)庫服務

systemctl restart mysqld

1.3.4. 登陸的MySQL數(shù)據(jù)庫[密碼中填寫上一步過濾的密碼]

[root@web02 ~]# mysql -uroot -p$(awk '/temporary password/{print $NF}' /var/log/mysqld.log)

1.3.5. 重新修改數(shù)據(jù)庫密碼

mysql> ALTER USER 'root'@'localhos``t' IDENTIFIED BY 'Bgx123.com';

1.3.6. 導入數(shù)據(jù),追主的bin_log

[root@db02 ~]# mysql -uroot -pBgx123.com < /tmp/db-2018-10-23-all.sql

1.3.7. 指向主,無需指定binlogfile和POS

mysql> change master to
master_host='172.16.1.51',
master_user='repl',
master_password='All123.com';

1.3.8. 啟動slave線程

mysql> start slave;

1.3.9. 查看MySQL的主從狀態(tài)

mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.16.1.51
Master_User: rep
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: db01-bin.000002
Read_Master_Log_Pos: 6671
Relay_Log_File: db02-relay-bin.000004
Relay_Log_Pos: 6882
Relay_Master_Log_File: db01-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes


向AI問一下細節(jié)

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

AI