MySql主从复制(同步)、主主复制(同步)教程
2018-12-03
给自己做个笔记,免得下次用的时候忘了。在做的时候,也参考了很多前辈的文章。word复制过来变形了,将就着看。页面底部给出下载地址。
目录
一、 主从同步 3
1.准备工作 3
2.配置主服务器(Master) 3
3. 配置从服务器(Slave) 4
二、 主主同步 6
1.准备工作 6
2.配置主服务器(MasterA)、主服务器(MasterB) 7
3.配置主主同步 7
4. 开启MySQL5.6的GTID功能 11
三、 附录(常用命令) 11
一、
主从同步
1.准备工作
1.1CentOS 7.4 64位 2台:主服务器【Master】(192.168.211.217),从服务器【Slave】(192.168.10.218)
2.配置主服务器(Master)
2.1更改主服务器MySQL配置文件,/etc/my.cnf,检查二进制日志log-bin是否开启了,把server-id设置为1(正常为服务器IP最后一位)
[mysqld]
server-id = 217
log-bin=mysql-bin
binlog_format=mixed
binlog-do-db=test #要同步的数据库
binlog-ignore-db=mysql #不同步的数据库,如果指定了binlog-do-db这里应该可以不用指定的
2.2创建一个从服务器链接主服务器的帐号(账号为repl,密码为123456)
mysql> grant replication slave on *.* to 'repl'@'192.168.10.218' identified by '123456';
mysql> flush privileges;
2.3查看二进制日志的信息,记录下当前的二进制文件名称和位置
mysql> show master status;
+------------------+-----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+-----------+--------------+------------------+
| mysql-bin.000019 | 864074260 | | |
+------------------+-----------+--------------+------------------+
1 row in set (0.00 sec)
3.配置从服务器(Slave)
3.1更改从服务器MySQL配置文件,/etc/my.cnf,检查二进制日志log-bin是否开启了,把server-id设置为为一个的一个id(推荐设置成服务器的最后一组数字)
[mysqld]
server-id = 218
#我们再改变一些二进制日志文件的名称(可选)
log-bin=mysql-bin
#replicate-do-db=复制的数据库名称
3.2配置同步参数
MASTER_HOST 主服务器IP地址
MASTER_PORT 主服务器端口
MASTER_USER 主服务器用户名
MASTER_PASSWORD 主服务器密码
MASTER_LOG_FILE 主服务器当前binlog文件(前面我们获取到“mysql-bin.000019”)
MASTER_LOG_POS 主服务器当前binlog文件的位置(就是我们前面获取到的Position的值:864074260)
mysql> CHANGE MASTER TO MASTER_HOST='192.168.211.217',MASTER_USER='repl',MASTER_PASSWORD='123456',MASTER_LOG_FILE='mysql-bin.000019',MASTER_LOG_POS=865765533;
Query OK, 0 rows affected (0.11 sec)
3.3启动同步进程
#启动同步进程
mysql> start slave;
Query OK, 0 rows affected (0.00 sec)
3.4检查同步状态
#检查状态
mysql> show slave status \G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.1.100
Master_User: slave_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000019
Read_Master_Log_Pos: 873059878
Relay_Log_File: 192-relay-bin.000002
Relay_Log_Pos: 7294598
Relay_Master_Log_File: mysql-bin.000019
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table: erp.claim_staff
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 873059878
Relay_Log_Space: 7294752
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.00 sec)
ERROR:
No query specified
这么多信息中,我们只需要看2项,只要为YES即可,分别是:
Slave_IO_Running: Yes # 去主库读二进制日志,然后保存到从库去
Slave_SQL_Running: Yes # 将中继日志转换成为SQL语句执行
备注:两个服务的serve_id必须不同,否则在开启复制功能时会提示错误
二、主主同步
1.准备工作
1.1CentOS 7.4 64位 2台:主服务器【MasterA】(192.168.211.217),主服务器【MasterB】(192.168.10.218)
注:1.MasterA是MasterB的主库,MasterB又是MasterA的主库,它们互为主从
2.主主同步一定要设置主键不能重复,常用的解决方案有MasterA主键为奇数,MasterB主键为偶数,设置方法详见下面配置
2.配置主服务器(MasterA)、主服务器(MasterB) my.cnf配置文件
2.1.修改MasterA配置文件/etc/my.cnf
server-id = 217
log-bin=mysql-bin
binlog_format=mixed
replicate-do-db=hq_zhsq #要同步的库
replicate-wild-do-table = hq_zhsq.bus_base_credit_standard #要同步的表
auto_increment_offset = 1
auto_increment_increment = 2 #奇数ID
log-slave-updates=true #将复制事件写入binlog,一台服务器既做主库又做从库此选项必须要开启
2.2.修改MasterB配置文件/etc/my.cnf
server-id = 218
log-bin=mysql-bin
binlog_format=mixed
replicate-do-db=hq_zhsq #要同步的库
replicate-wild-do-table = hq_zhsq.bus_base_household #要同步表
replicate-wild-do-table = hq_zhsq.bus_base_member #要同步表
auto_increment_offset = 2
auto_increment_increment = 2 #偶数ID
log-slave-updates=true #将复制事件写入binlog,一台服务器既做主库又做从库此选项必须要开启
3.配置主主同步
3.1添加主从同步账户
masterA上:
mysql> grant replication slave on *.* to 'repl'@'192.168.211.218' identified by '123456';
mysql> flush privileges;
masterB上:
mysql> grant replication slave on *.* to 'repl'@'192.168.211.217' identified by '123456';
mysql> flush privileges;
3.2查看主库的状态
masterA上:
mysql> show master status;
+------------+----------+------------+---------------+----------------+
| File | Position | Binlog_Do_DB|Binlog_Ignore_DB|Executed_Gtid_Set|
+------------+----------+------------+---------------+----------------+
| mysql-bin.3| 129 | | | |
+---------------+----------+---------+---------------+----------------+
1 row in set (0.00 sec)
masterB上
mysql> show master status;
+------------+----------+------------+---------------+----------------+
| File | Position | Binlog_Do_DB|Binlog_Ignore_DB|Executed_Gtid_Set|
+------------+----------+------------+---------------+----------------+
| mysql-bin.3| 123 | | | |
+---------------+----------+---------+---------------+----------------+
1 row in set (0.00 sec)
3.3配置同步信息
MASTER_HOST 主服务器IP地址
MASTER_PORT 主服务器端口
MASTER_USER 主服务器用户名
MASTER_PASSWORD 主服务器密码
MASTER_LOG_FILE 主服务器当前binlog文件(前面我们获取到“mysql-bin.000019”)
MASTER_LOG_POS 主服务器当前binlog文件的位置(就是我们前面获取到的Position的值:864074260)
masterA上:
mysql> change master to master_host='192.168.211.218',master_port=3306,master_user='repl',master_password='123456',master_log_file='mysql-bin.3',master_log_pos=123;
mysql> start slave;
masterB上:
mysql> change master to master_host='192.168.211.217',master_port=3306,master_user='repl',master_password='123456',master_log_file='mysql-bin.3',master_log_pos=129;
mysql> start slave;
3.4检查同步状态
注:masterA和masterB执行同样命令
#检查状态
mysql> show slave status \G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.1.100
Master_User: slave_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000019
Read_Master_Log_Pos: 873059878
Relay_Log_File: 192-relay-bin.000002
Relay_Log_Pos: 7294598
Relay_Master_Log_File: mysql-bin.000019
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table: erp.claim_staff
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 873059878
Relay_Log_Space: 7294752
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.00 sec)
ERROR:
No query specified
这么多信息中,我们只需要看2项,只要为YES即可,分别是:
Slave_IO_Running: Yes # 去主库读二进制日志,然后保存到从库去
Slave_SQL_Running: Yes # 将中继日志转换成为SQL语句执行
备注:两个服务的serve_id必须不同,否则在开启复制功能时会提示错误
4.开启MySQL5.6的GTID功能
masterA和masterB分别执行如下命令:
mysql> stop slave;
Query OK, 0 rows affected (0.00 sec)
mysql> change master to MASTER_AUTO_POSITION=1;
Query OK, 0 rows affected (0.01 sec)
mysql> start slave;
Query OK, 0 rows affected (0.00 sec)
三、附录(常用命令)
命令 解释
start slave; 启动主从同步
stop slave; 停止主从同步
reset slave; 重启主从同步
show slave status\G; 查看同步状态
service mysqld restart 重启MySQL服务
service mysqld stop 停止MySQL服务
service mysqld start 启动MySQL服务