MySQL主从配置——双主
本人是测试环境,准备了两台安装好mysql的服务器(masterA和masterB),可以保证没数据写入,否则需要先将两台服务器上的数据一致,然后再进行主从配置,步骤是:先masterA锁表-->masterA备份数据-->masterA解锁表-->将masterA数据导入masterB-->设置主从。
环境
MySQL双主(主主)架构思路:
- 两台mysql都可读写,互为主备,默认只使用一台(masterA)负责数据的写入,另一台(masterB)备用;
- masterA是masterB的主库,masterB又是masterA的主库,它们互为主从;
- 所有提供服务的从服务器与masterB进行主从同步(即可实现双主多从);
架构图
搭建主从配置
创建主从同步用户
masterA:
[root@adailinux ~]# mysql -uroot
mysql> grant replication slave on *.* to 'repl'@'192.168.8.132' identified by '123456';
#注:在此指定IP为masterB(从服务器)的IP
mysql> flush privileges;
masterB:
[root@adailinux ~]# mysql -uroot
mysql> grant replication slave on *.* to 'repl'@'192.168.8.131' identified by '123456';
#注:在此指定IP为masterA(主服务器)的IP
mysql> flush privileges;
配置mysql(/etc/my.cnf)
配置masterA
[root@adailinux ~]# vim /etc/my.cnf
[mysqld]
datadir = /data/mysql
socket = /tmp/mysql.sock
server_id = 1 #指定server-id,必须保证主从服务器的server-id不同
auto_increment_increment = 2 #设置主键单次增量
auto_increment_offset = 1 #设置单次增量中主键的偏移量
log_bin = mysql-bin #创建主从需要开启log-bin日志文件
log-slave-updates #把更新的日志写到二进制文件(binlog)中
配置masterB
[root@adailinux ~]# vim /etc/my.cnf
[mysqld]
datadir = /data/mysql
socket = /tmp/mysql.sock
server_id = 2 #指定server-id,必须保证主从服务器的server-id不同
auto_increment_increment = 2 #设置主键单次增量
auto_increment_offset = 2 #设置单次增量中主键的偏移量
log_bin = mysql-bin #创建主从需要开启log-bin日志文件
log-slave-updates #把更新的日志写到二进制文件(binlog)中
以上为同步配置的核心参数!
参数解析
log-slave-updates = true
#将复制事件写入binlog,一台服务器既做主库又做从库此选项必须要开启
自增长ID:
#masterA:
auto_increment_offset = 1
auto_increment_increment = 2
#奇数ID
#masterB:
auto_increment_offset = 2
auto_increment_increment = 2
#偶数ID
其他参数:
binlog-format=ROW #日志格式
#binlog-do-db=TSC #同步数据库名称
binlog-ignore-db=mysql #忽略数据库名称
replicate-do-db=TSC #指定进行主从的数据
replicate-ignore-db=mysql
replicate-ignore-db = information_schema
replicate-ignore-db = performance_schema
replicate-ignore-db = test
replicate-ignore-db = zabbix #忽略不进行主从同步的数据
skip-character-set-client-handshake #忽略应用程序想要设置的其他字符集
init-connect='SET NAMES utf8' #连接时执行的SQL
character-set-server=utf8 #服务端默认字符集
wait_timeout=1800 #请求的最大连接时间
interactive_timeout=1800 #和上一参数同时修改才会生效
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES #sql模式
#expire_logs_days = 20 #设置log-bin的保留时间(在此不设置)
#max-binlog-size= 512M #限定log-bin文件的大小
注: 开始配置my.cnf时添加了全部参数进去,但是最后即便同步配置完成了也未能完成新建的库的同步,暂时未找到原因(猜测:和replicate参数有关),之后持续更新。
重启MySQL服务
分别重启masterA和masterB并查看主库状态。
[root@adailinux ~]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
masterA:
[root@adailinux ~]# mysql -uroot
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 | 419 | TSC | mysql | |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
masterB:
[root@adailinux ~]# mysql -uroot
mysql> show master status
-> ;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 | 419 | TSC | mysql | |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
配置同步信息
masterA:
[root@adailinux ~]# mysql -uroot
mysql> change master to master_host='192.168.8.132',master_port=3306,master_user='repl',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=419;
#注:IP为masterB的IP(即,从服务器的IP)
mysql> start slave;
Query OK, 0 rows affected (0.05 sec)
mysql> show slave status\G;
在此查看有如下状态说明配置成功:
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
masterB:
[root@adailinux ~]# mysql -uroot
mysql>change master to master_host='192.168.8.131',master_port=3306,master_user='repl',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=419;
Query OK, 0 rows affected, 2 warnings (0.06 sec)
mysql> start slave;
Query OK, 0 rows affected (0.04 sec)
mysql> show slave status\G
在此查看有如下状态说明配置成功:
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
主从同步测试
在masterA上创建一个库:
mysql> create database adai0001;
Query OK, 1 row affected (0.00 sec)
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| adai0001 |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.04 sec)
查看masterB上的库:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| adai0001 |
| mysql |
| performance_schema |
| test |
+--------------------+
5 rows in set (0.02 sec)
即,配置完成!
常见错误
执行“show slave status\G”后,masterB正常,masterA中状态如下:
Slave_IO_Running: Connecting
Slave_SQL_Running: Yes
说明masterA同步masterB(A为从服务器;B为主服务器)未成功!查看错误日志:
[root@adailinux ~]# less /data/mysql/adailinux.err
2017-09-01 23:52:34 3579 [ERROR] Slave I/O: error connecting to master '[email protected]:3306' - retry-time: 60 retries: 3, Error_code: 1130
没有更多信息,查询错误代码:
[root@adailinux ~]# perror 1130
MySQL error code 1130 (ER_HOST_NOT_PRIVILEGED): Host '%-.64s' is not allowed to connect to this MySQL server
意识是不允许连接该服务器,常见的原因有两种:
- 防火墙问题:查看防火墙,关闭系统防火墙,或增加iptables规则开放3306端口
- 权限问题:在创建同步用户‘repl’时授权不不正确,解决办法是更改用户权限
经过上面两种操作,一般能解决该问题,如果还没解决,只能再继续排错了。