mysql實現主從複製

安全劍客發表於2018-11-20
Mysql的 Replication 是一個非同步的複製過程(mysql5.1.7以上版本分為非同步複製和半同步兩種模式),從一個 Mysql instace(我們稱之為 Master)複製到另一個 Mysql instance(我們稱之 Slave)。在 Master 與 Slave 之間的實現整個複製過程主要由三個執行緒來完成,其中兩個執行緒(Sql執行緒和IO執行緒)在 Slave 端,另外一個執行緒(IO執行緒)在 Master 端。

mysql實現主從複製mysql實現主從複製

1.1. mysql主從的原理

1.1.1. Replication 執行緒

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

要實現 MySQL 的 Replication ,首先必須開啟 Master 端的Binary Log(mysql-bin.xxxxxx)功能,否則無法實現。因為整個複製過程實際上就是Slave從Master端獲取該日誌然後再在自己身上完全 順序的執行日誌中所記錄的各種操作。開啟 MySQL 的 Binary Log 可以透過在啟動 MySQL Server 的過程中使用 “—log-bin” 引數選項,或者在 my.cnf 配置檔案中的 mysqld 引數組([mysqld]標識後的引數部分)增加 “log-bin” 引數項。

1.1.2. MySQL 複製的基本過程:

1.Slave 上面的IO執行緒連線上 Master,並請求從指定日誌檔案的指定位置(或者從最開始的日誌)之後的日誌內容;

Master 接收到來自 Slave 的 IO 執行緒的請求後,透過負責複製的 IO 執行緒根據請求資訊讀取指定日誌指定位置之後的日誌資訊,返回給 Slave 端的 IO 執行緒。返回資訊中除了日誌所包含的資訊之外,還包括本次返回的資訊在 Master 端的 Binary Log 檔案的名稱以及在 Binary Log 中的位置;

Slave 的 IO 執行緒接收到資訊後,將接收到的日誌內容依次寫入到 Slave 端的Relay Log檔案(mysql-relay-bin.xxxxxx)的最末端,並將讀取到的Master端的bin-log的檔名和位置記錄到master- info檔案中,以便在下一次讀取的時候能夠清楚的高速Master“我需要從某個bin-log的哪個位置開始往後的日誌內容,請發給我”

Slave 的 SQL 執行緒檢測到 Relay Log 中新增加了內容後,會馬上解析該 Log 檔案中的內容成為在 Master 端真實執行時候的那些可執行的 Query 語句,並在自身執行這些 Query。這樣,實際上就是在 Master 端和 Slave 端執行了同樣的 Query,所以兩端的資料是完全一樣的。

1.2. db01

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

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

1.2.2. 重啟資料庫

[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. 匯出主庫當前資料

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

1.2.5. 複製備份的資料至從庫

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

1.3. db02

在從庫上啟動資料庫,然後倒入資料

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的資料庫服務

systemctl restart mysqld

1.3.4. 登陸的MySQL資料庫[密碼中填寫上一步過濾的密碼]

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

1.3.5. 重新修改資料庫密碼

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

1.3.6. 匯入資料,追主的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的主從狀態

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


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2220695/,如需轉載,請註明出處,否則將追究法律責任。

相關文章