前置準(zhǔn)備
- 使用 docker 運行兩個容器分別為MySQL master 和 slave 赞弥。
-
git clone https://github.com/jessun2017/docker-files
干旧,進入項目中的 mysql4dev 目錄,目錄中包含 docker-compose.yml 文件。 - 提前安裝 git, docker, mycli, docker-compose 等工具
安裝步驟
在 docker-compose.yml 目錄中负乡,運行命令
docker-compose up -d
胚宦。master
目錄下的my.cnf
文件會自動被加載為mysql_master
的配置文件。
文件內(nèi)容
[mysqld]
## 設(shè)置server_id戒洼,一般設(shè)置為IP俏橘,注意要唯一
server_id=100
## 復(fù)制過濾:也就是指定哪個數(shù)據(jù)庫不用同步(mysql庫一般不同步)
binlog-ignore-db=mysql
## 開啟二進制日志功能,可以隨便取圈浇,最好有含義(關(guān)鍵就是這里了)
log-bin=replicas-mysql-bin
## 為每個session分配的內(nèi)存寥掐,在事務(wù)過程中用來存儲二進制日志的緩存
binlog_cache_size=1M
## 主從復(fù)制的格式(mixed,statement,row,默認(rèn)格式是statement)
binlog_format=mixed
## 二進制日志自動刪除/過期的天數(shù)磷蜀。默認(rèn)值為0召耘,表示不自動刪除。
expire_logs_days=7
## 跳過主從復(fù)制中遇到的所有錯誤或指定類型的錯誤褐隆,避免slave端復(fù)制中斷污它。
## 如:1062錯誤是指一些主鍵重復(fù),1032錯誤是因為主從數(shù)據(jù)庫數(shù)據(jù)不一致
slave_skip_errors=1062
-
slave
目錄下的my.cnf
文件會自動被加載為mysql_slave
的配置文件。
文件內(nèi)容
[mysqld]
## 設(shè)置server_id衫贬,一般設(shè)置為IP德澈,注意要唯一
server_id=101
## 復(fù)制過濾:也就是指定哪個數(shù)據(jù)庫不用同步(mysql庫一般不同步)
binlog-ignore-db=mysql
## 開啟二進制日志功能,以備Slave作為其它Slave的Master時使用
log-bin=replicas-mysql-slave1-bin
## 為每個session 分配的內(nèi)存固惯,在事務(wù)過程中用來存儲二進制日志的緩存
binlog_cache_size=1M
## 主從復(fù)制的格式(mixed,statement,row梆造,默認(rèn)格式是statement)
binlog_format=mixed
## 二進制日志自動刪除/過期的天數(shù)。默認(rèn)值為0缝呕,表示不自動刪除澳窑。
expire_logs_days=7
## 跳過主從復(fù)制中遇到的所有錯誤或指定類型的錯誤,避免slave端復(fù)制中斷供常。
## 如:1062錯誤是指一些主鍵重復(fù)摊聋,1032錯誤是因為主從數(shù)據(jù)庫數(shù)據(jù)不一致
slave_skip_errors=1062
## relay_log配置中繼日志
relay_log=replicas-mysql-relay-bin
## log_slave_updates表示slave將復(fù)制事件寫進自己的二進制日志
log_slave_updates=1
## 防止改變數(shù)據(jù)(除了特殊的線程)
read_only=1
-
master
上釋放鎖定
mysql> UNLOCK TABLES;
-
master
查看同步的座標(biāo)
mysql> show master status\G;
/* 顯示的結(jié)果類似于
***************************[ 1. row ]***************************
File | replicas-mysql-bin.000003
Position | 154
Binlog_Do_DB |
Binlog_Ignore_DB | mysql
Executed_Gtid_Set |
*/
-
slave
上輸入命令
mysql> change master to MASTER_HOST='mysql_master',
MASTER_USER='root',
MASTER_PASSWORD='root',
MASTER_LOG_FILE='replicas-mysql-bin.000003',
MASTER_LOG_POS=154;
mysql> start slave;
// 檢查同步情況,如下面所示栈暇,表示主從同步設(shè)置完成
mysql> show slave status\G;
/*
***************************[ 1. row ]***************************
Slave_IO_State | Waiting for master to send event
Master_Host | mysql_master
Master_User | root
Master_Port | 3306
Connect_Retry | 60
Master_Log_File | replicas-mysql-bin.000003
Read_Master_Log_Pos | 154
Relay_Log_File | replicas-mysql-relay-bin.000002
Relay_Log_Pos | 329
Relay_Master_Log_File | replicas-mysql-bin.000003
Slave_IO_Running | Yes
Slave_SQL_Running | Yes
Replicate_Do_DB |
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 | 154
Relay_Log_Space | 545
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 | 100
Master_UUID | 9d0acd8e-771f-11ea-a787-0242ac170003
Master_Info_File | /var/lib/mysql/master.info
SQL_Delay | 0
SQL_Remaining_Delay | <null>
Slave_SQL_Running_State | Slave has read all relay log; waiting for more updates
Master_Retry_Count | 86400
Master_Bind |
Last_IO_Error_Timestamp |
Last_SQL_Error_Timestamp |
Master_SSL_Crl |
Master_SSL_Crlpath |
Retrieved_Gtid_Set |
Executed_Gtid_Set |
Auto_Position | 0
Replicate_Rewrite_DB |
Channel_Name |
Master_TLS_Version |
*/