前置准备
- 使用 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
的配置文件。
文件内容
[mysqld]
## 设置server_id,一般设置为IP,注意要唯一
server_id=100
## 复制过滤:也就是指定哪个数据库不用同步(mysql库一般不同步)
binlog-ignore-db=mysql
## 开启二进制日志功能,可以随便取,最好有含义(关键就是这里了)
log-bin=replicas-mysql-bin
## 为每个session分配的内存,在事务过程中用来存储二进制日志的缓存
binlog_cache_size=1M
## 主从复制的格式(mixed,statement,row,默认格式是statement)
binlog_format=mixed
## 二进制日志自动删除/过期的天数。默认值为0,表示不自动删除。
expire_logs_days=7
## 跳过主从复制中遇到的所有错误或指定类型的错误,避免slave端复制中断。
## 如:1062错误是指一些主键重复,1032错误是因为主从数据库数据不一致
slave_skip_errors=1062
-
slave
目录下的my.cnf
文件会自动被加载为mysql_slave
的配置文件。
文件内容
[mysqld]
## 设置server_id,一般设置为IP,注意要唯一
server_id=101
## 复制过滤:也就是指定哪个数据库不用同步(mysql库一般不同步)
binlog-ignore-db=mysql
## 开启二进制日志功能,以备Slave作为其它Slave的Master时使用
log-bin=replicas-mysql-slave1-bin
## 为每个session 分配的内存,在事务过程中用来存储二进制日志的缓存
binlog_cache_size=1M
## 主从复制的格式(mixed,statement,row,默认格式是statement)
binlog_format=mixed
## 二进制日志自动删除/过期的天数。默认值为0,表示不自动删除。
expire_logs_days=7
## 跳过主从复制中遇到的所有错误或指定类型的错误,避免slave端复制中断。
## 如:1062错误是指一些主键重复,1032错误是因为主从数据库数据不一致
slave_skip_errors=1062
## relay_log配置中继日志
relay_log=replicas-mysql-relay-bin
## log_slave_updates表示slave将复制事件写进自己的二进制日志
log_slave_updates=1
## 防止改变数据(除了特殊的线程)
read_only=1
-
master
上释放锁定
mysql> UNLOCK TABLES;
-
master
查看同步的座标
mysql> show master status\G;
/* 显示的结果类似于
***************************[ 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;
// 检查同步情况,如下面所示,表示主从同步设置完成
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 |
*/
网友评论