mysql master-slave synchronization error: 1062 Error 'Duplicate entry' 1438019 'for key' PRIMARY '' on query
The problem of 1062 Last_SQL_Error: Error ‘Duplicate entry’ occurs when the mysql master and slave libraries are synchronized:
Obviously the problem is that the slave library does not work because the duplicate primary key is inserted, the error message is as follows
ERROR:
No query specified
The solution is to execute on the slave:
mysql> slave stop;
mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
mysql> slave start;
The above method can solve the problem, and another way to solve the problem is to modify the mysql configuration file so that the synchronization thread from the library ignores this error, the method:
Modify the mysql configuration file /etc/my.cnf in
[mysqld] Add a line slave_skip_errors = 1062, save. Restart mysql. The mysql slave can be synchronized normally.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.