mysql双主复制

本文详细介绍了数据库主从复制的配置流程,包括环境准备、M1与M2节点的配置、复制用户创建及复制过程初始化,最终通过show slave status检查同步状态。重点突出自增列设置和复制过程中关键步骤。
摘要由CSDN通过智能技术生成

一开始就规划主主复制,配置就比较简单。但一个库已经有数据,则需要导出导入,之后步骤一样。

环境:192.168.7.221服务器上两个端口3306和3309

1、M1(3306)

vi /etc/my.cnf
server-id = 1
log-bin=mysql-bin
log-bin-index=binlogs.index
log-slave-updates
auto_increment_offset=1
auto_increment_increment=2
replicate-do-db=lmis
replicate-ignore-db=mysql

重启后创建复制用户

grant replication slave on *.* to slave@'%' identified by 'mysql';
当前位置
show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000013 |      328 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+

2、M2(3309)

vi /etc/my.cnf
server-id = 4
log-bin=mysql-bin
log-bin-index=binlogs.index
log-slave-updates
auto_increment_offset=2
auto_increment_increment=2
replicate-do-db=lmis
replicate-ignore-db=mysql
重启后创建复制用户

grant replication slave on *.* to slave@'%' identified by 'mysql';
根据M1位置配置M2 slave

change master to
master_host ='192.168.7.221',
master_port= 3306,
master_user= 'slave',
master_password= 'mysql',
master_log_file='mysql-bin.000013',
master_log_pos=120;

启动

start slave;

当前位置

show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 |      598 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+

3、根据M2位置配置M1 slave

change master to
master_host ='192.168.7.221',
master_port= 3309,
master_user= 'slave',
master_password= 'mysql',
master_log_file='mysql-bin.000001',
master_log_pos=598;
启动

start slave;

4、最后均可使用show slave status\G查看同步状态

注意:自增列,因为会更新同一张表,自增一般为主键,所以需要设置自增的间隔和初始值
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

上海阿丽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值