mysql传统主从、双主复制+keepalived配置步骤2
192.168.0.29 master1
192.168.0.30 master2
192.168.0.32 slave1
192.168.0.34 VIP
借鉴博客:http://www.cnblogs.com/xiaoboluo768/p/5135210.html
其中:master1和slave1是主从关系,master1和master2互为主从
一、先修改配置文件
服务器master1(192.168.0.29)配置如下
server-id = 1
log_slave_updates = 1
auto-increment-increment = 2
auto-increment-offset = 1
服务器master2(192.168.0.30)配置
server-id = 2
log_slave_updates = 1
auto-increment-increment = 2
auto-increment-offset = 2
服务器slave1(192.168.0.32) 配置:
server-id = 3
log_slave_updates = 1
三台服务器mysql都重启
shell > service mysqld restart
注:双主之间只有server-id不同和 auto-increment- offset不同
auto-increment-offset是用来设定数据库中自动增长的起点的,回为这两能服务器都设定了一次自动增长值2,所以它们的起点必须得不同,这样才能避免两台服务器数据同步时出现主键冲突
另:auto-increment-increment的值应设为整个结构中主库服务器的总数,本案例用到两台主库服务器,所以值设为2
二、同步数据
在master1上:
#先授权,这样导出的sql文件中就包含用户名和密码,如果你不需要同步系统库,那么,需要在从库change master之前,主从mysql实例都进行授权
mysql> GRANT REPLICATION SLAVE ON *.* TO 'repl'@'192.168.0.%' IDENTIFIED BY '123456';
mysql > grant replication slave on *.* to repl@'127.0.0.1' identified by '123456';
mysql> flush privileges;
使用mysqldump导出所有数据库的数据备份,备份数据前先锁表,保证数据一致性
mysql> FLUSH TABLES WITH READ LOCK;
开启另外一个会话终端执行数据备份:
shell > /usr/local/services/mysql/bin/mysqldump -uroot -p'xx' --opt --default-character-set=utf8 --triggers -R --hex-blob --single-transaction --no-autocommit --all-databases > all.sql
查看binlog位置,并记下这些信息,后边会用到:
mysql> show master status\G;
*************************** 1. row ***************************
File: mysql-bin.000004
Position: 107
Binlog_Do_DB:
Binlog_Ignore_DB:
1 row in set (0.00 sec)
解表锁:
mysql> UNLOCK TABLES;
把备份文件传送到master2和slave1上:
shell > scp all.sql 192.168.0.30:/tmp
shell > scp all.sql 192.168.0.32:/tmp
导出数据时也可以不手动加锁解锁,mysqldump加一个参数:--master-data=2,该参数会把change master 语句加到all.sql文件中,以注释的形式写入,包含master_log_file和master_log_pos,复制出来带上主库IP、用户名和密码(master_host,master_user,master_password)待从库导入数据后,即可在从库上执行change master语句。
grep '\-\- CHANGE MASTER' all.sql
三、互告bin-log信息
在master2中导入all.sql文件,并执行change master语句:
shell > /usr/local/services/mysql/bin/mysql -uroot -p'xx' < /tmp/all.sql
mysql> change master to master_host='192.168.0.29',master_user='repl',master_password='123456',master_log_file='mysql-bin.000004',master_log_pos=107;
在slave1上执行下面的操作:
导入all.sql文件,并执行change master语句:
shell > /usr/local/services/mysql/bin/mysql -uroot -p'xx' < /tmp/all.sql
mysql> change master to master_host='192.168.0.29',master_user='repl',master_password='123456',master_log_file='mysql-bin.000004',master_log_pos=107;
在master2上面查看binlog位置:
先执行如下:
GRANT REPLICATION SLAVE ON *.* TO 'repl'@'192.168.0.%' IDENTIFIED BY '123456';
show master status\G;
*************************** 1. row ***************************
File: mysql-bin.000003
Position: 509270
Binlog_Do_DB:
Binlog_Ignore_DB:
1 row in set (0.00 sec)
在master1上执行change master
mysql> change master to master_host='192.168.0.30',master_user='repl',master_password='123456',master_log_file='mysql-bin.000003',master_log_pos=509270;
四、在三服务器都执行以下命令
mysql> start slave;
五、查看状态
mysql> show slave status\G
master1、master2 、slave1 全部状态如下:
show slave status\G;
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
本文出自 “梁小明的博客” 博客,请务必保留此出处http://7038006.blog.51cto.com/7028006/1893614