码迷,mamicode.com
首页 > 数据库 > 详细

mysql 主从复制遇到的坑

时间:2021-04-27 14:28:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:cat   code   style   binlog   pos   同步   从库   主从复制   打开   

1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘

1.1 主库操作

SHOW BINARY LOGS;
PURGE BINARY LOGS TO binlog.000001;
RESET MASTER;

1.2 从库操作

STOP SLAVE;
CHANGE MASTER TO MASTER_HOST=192.168.203.141, MASTER_PORT=33060,MASTER_USER=root, MASTER_PASSWORD=123456;
START SLAVE;

2 主从同步遇到 Got fatal error 1236 from master when reading data from binary log: ‘Could not find first log...

1.打开主服务器,进入mysql

2.执行flush logs;//这时主服务器会重新创建一个binlog文件;

3.来到从服务器的mysql;

4.stop slave;

5.change master to master_log_file=‘mysql-bin.000012‘,master_log_pos=154;//这里的file和pos都是上面主服务器master显示的。

6.start slave;//这时候就应可以了

7.show slave status \G;

 

mysql 主从复制遇到的坑

标签:cat   code   style   binlog   pos   同步   从库   主从复制   打开   

原文地址:https://www.cnblogs.com/zhf123/p/14703482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!