监控发现 mysql slave 延迟了不少,登陆mysql slave 查看复制状态
mysql> show slave status/G
会有类似的错误提示 Slave:Error “Duplicate entry ‘1’ for key 1” on query…..
再查看master 的 status,验证下
mysql> show master status;
在 mysql slave 上设置
mysql> stop slave;
mysql> set global sql_slave_skip_counter=1;
mysql> start slave;
如果仍然提示错误,重复上面的步骤。
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/3887.html