搭建環境
master:172.16.18.114,正式伺服器,mysql運作中
現要為master建立一slave,172.16.18.165,并監控其延遲
步驟如下:
1. 配置master伺服器
- 修改my.cnf:
log-bin=mysql-bin
sync_binlog =
server-id =
binlog_format = ROW
如果主庫原來沒有設定這些參數,那麼設定後要重新開機主庫mysql
2. 配置slave伺服器
- 修改my.cnf:
server-id =
log-bin=mysql-bin
sync_binlog =
binlog_format = ROW
log_slave_updates =
read_only = ;
#有多個資料庫要過濾,一定要寫多條,不能在一條裡用','分隔,不會生效
replicate-do-db=alogic
replicate-do-db=boss
replicate-do-db=cbvacs
replicate-do-db=elitel_access
replicate-do-db=wollar
replicate-do-db=wxqyh
replicate-do-db=percona
#replicate-ignore-db=test
設定後要重新開機從庫mysql
- 删除備庫上需要同步的相關資料庫
drop database if exists alogic;
drop database if exists boss;
drop database if exists cbvacs;
drop database if exists elitel_access;
drop database if exists wollar;
drop database if exists wxqyh;
drop database if exists percona;
- 設定從庫的master資訊
change master to master_host='172.16.18.114',master_user='user',master_password='pass';
3. 将master目前資料全量備份到slave
mysqldump --single-transaction --databases 3alogic boss cbvacs elitel_access wollar wxqyh percona --master-data=1 | mysql --host=172.16.18.165
#--single-transaction參數會将目前事務設定為repeat-read
#--master-data會在備份檔案中增加change master master_log_file=XXX,master_log_pos=xxx
or
mysqldump --single-transaction --databases 3alogic boss cbvacs elitel_access wollar wxqyh percona --master-data=1 > /tmp/114.sql
mysql --host=172.16.18.165 < /tmp/114.sql
4. start slave
在從庫mysql上start slave
start slave;
show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.16.18.114
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000005
Read_Master_Log_Pos: 14950195
Relay_Log_File: localhost-relay-bin.000003
Relay_Log_Pos: 26245
Relay_Master_Log_File: mysql-bin.000005
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: 3alogic,boss,elitel_access,cbvacs,wollar,wxqyh,percona
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 14950195
Relay_Log_Space: 26405
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
1 row in set (0.01 sec)
說明slave運作正常,可以在master上show master status,對比下Master_Log_Pos
5. 監控slave延遲
借助percona tookit工具pt-heartbeat來檢查slave落後master時間
該工具是在master運作
pt-heartbeat -D 3alogic --update --user=user --password=pass -h172.16.18.114 --create-table --interval=1 --daemonize
#上面這條指令會在master的3alogic庫下建立一個heartbeat的表,并每1S更新一次該表資料
#可以加參數--interval=60來指定更新頻率,該值越小監控延時情況越精确
pt-heartbeat -D 3alogic --monitor --user=user --password=user -h172.16.18.165 --interval=1
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
0.01s [ 0.77s, 0.15s, 0.05s ]
#上面這條指令會連接配接到slave檢查延遲情況
#--interval=1的情況下,延遲應該小于1S
6. 定期檢查主從資料是否一緻
借助percona tookit工具pt-table-checksum來檢查主從資料是否一緻,用pt-table-sync來同步不一緻的資料。該工具是在master運作。
- pt-table-checksum
pt-table-checksum --nocheck-replication-filters --databases 3alogic --replicate percona.checksums --create-replicate-table --no-check-binlog-format --replicate-check-only
#--nocheck-replication-filters 從庫有Replicate_Do_DB時需要增加該參數
#--no-check-binlog-format 如果binlog_format=ROW需要設定該參數
#--replicate percona.checksums
#--create-replicate-table
#上面兩個參數,第一次運作時需要,會在主庫上建立庫percona和表checksums并同步到slave上,是以slave上Replicate_Do_DB必須含有percona,下次運作時可以不加這兩個參數
#--replicate-check-only 隻顯示不同結果,該參數隻是從slave的checksums表中擷取擷取不同結果的資料,并不會再次檢查主從資料是否一緻,因些使用該參數檢查之前最好先執行一條不帶該選項的檢查指令
pt-table-checksum --nocheck-replication-filters --databases 3alogic --recursion-method=dsn=h=172.16.18.114,D=test,t=dsns
#預設情況下該工具會在master上利用show processlist得到slave連接配接資訊
#上面的指令是将slave資訊儲存在test庫的dsns表中,表結構如下:
CREATE TABLE `dsns` (
`id` int() NOT NULL AUTO_INCREMENT,
`parent_id` int() DEFAULT NULL,
`dsn` varchar() NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO dsns (parent_id,dsn) values(,'h=172.16.18.165,u=user,p=pass,P=3306');
#可以用這種方式來修改slave特殊的端口
- pt-table-sync
pt-table-sync --print --user=user --password=pass h=localhost,D=3alogic,t=log h=172.16.18.165
#隻同步一個表
#這種預設狀态下,工具會直接操作如果備庫更新資料,不安全,如果備庫開啟了log_bin則會出錯,要加上--replicate或--sync-to-master選項
pt-table-sync --print --user=user --password=pass --replicate=percona.checksums --databases=3alogic --tables=log h=localhost h=172.16.18.165
# 隻同步一個表
pt-table-sync --print --replicate=percona.checksums --databases=3alogic h=localhost h=172.16.18.165
#同步一個庫
pt-table-sync --execute --user=root --password=cpyf --replicate=percona.checksums h=localhost,D=3alogic,t=log h=172.16.18.116
#--print 是隻列印出結果
#--execute 才真正同步
#前一個h是master,後一個h是slave
#--replicate=percona.checksums依賴于percona.checksums的結果
./pt-table-sync --print --sync-to-master --databases=3alogic --tables=log 172.16.18.116
./pt-table-sync --execute --sync-to-master --databases=3alogic --tables=log 172.16.18.116
#這個指令不依賴于percona.checksums