Sunteți pe pagina 1din 12

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

Register

Login

Contribute

Subscribe

RSS

Howtos

Forums

Contribute

Subscribe

ISPConfig

FAQForge

News

Options For This Howto


q q

English |

Deutsch | Site Map/RSS Feeds | Advertise

Free Support Paid Support

Navigation
[+] Expand [-] Collapse

Home Howtos MySQL How To Repair MySQL Replication

How To Repair MySQL Replication

Howtos Linux
s

Want to support HowtoForge? Become a subscriber!

Android CentOS Debian Fedora Kernel Mandriva PCLinuxOS SuSE Ubuntu Web Server Apache Cherokee Lighttpd nginx Backup Control Panels ISPConfig DNS BIND MyDNS PowerDNS djbdns Desktop Email
q

Submitted by falko (Contact Author) (Forums) on Fri, 2008-06-06 12:10. :: MySQL

How To Repair MySQL Replication


Version 1.0 Author: Falko Timme <ft [at] falkotimme [dot] com> Last edited 05/29/2008

http://www.howtoforge.com/how-to-repair-mysql-replication (1 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials


s

Anti-Spam/Virus Postfix FTP High-Availability Monitoring MySQL Programming C/C++ PHP Samba Security Anti-Spam/Virus Storage Virtualization KVM OpenVZ VMware VirtualBox Xen Other FreeBSD Commercial Mini-Howtos

If you have set up MySQL replication, you probably know this problem: sometimes there are invalid MySQL queries which cause the replication to not work anymore. In this short guide I explain how you can repair the replication on the MySQL slave without the need to set it up from scratch again. I do not issue any guarantee that this will work for you!

1 Identifying The Problem


To find out whether replication is/is not working and what has caused to stop it, you can take a look at the logs. On Debian, for example, MySQL logs to /var/log/syslog:

grep mysql /var/log/syslog

server1:/home/admin# grep mysql /var/log/syslog May 29 09:56:08 http2 mysqld[1380]: 080529 9:56:08 [ERROR] Slave: Error 'Table 'mydb. taggregate_temp_1212047760' doesn't exist' on query. Default database: 'mydb'. Query: 'UPDATE thread AS thread,taggregate_temp_1212047760 AS aggregate May 29 09:56:08 http2 mysqld[1380]: ^ISET thread.views = thread.views + aggregate.views May 29 09:56:08 http2 mysqld[1380]: ^IWHERE thread.threadid = aggregate.threadid', Error_code: 1146 May 29 09:56:08 http2 mysqld[1380]: 080529 9:56:08 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'mysql-bin.001079' position 203015142 server1:/home/admin# You can see what query caused the error, and at what log position the replication stopped. To verify that the replication is really not working, log in to MySQL:

Forums Contribute

Subscription Login Site Map/RSS Feeds

mysql -u root -p

User login
Username:

On the MySQL shell, run:

mysql> SHOW SLAVE STATUS \G


Password:

Remember Me?

If one of Slave_IO_Running or Slave_SQL_Running is set to No, then the replication is broken: mysql> SHOW SLAVE STATUS \G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event

Log in
Create a new account Request new password

http://www.howtoforge.com/how-to-repair-mysql-replication (2 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

Facebook Who's online


There are currently 4 users and 3310 guests online.

Master_Host: 1.2.3.4 Master_User: slave_user Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.001079 Read_Master_Log_Pos: 269214454 Relay_Log_File: slave-relay.000130 Relay_Log_Pos: 100125935 Relay_Master_Log_File: mysql-bin.001079 Slave_IO_Running: Yes Slave_SQL_Running: No Replicate_Do_DB: mydb Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 1146 Last_Error: Error 'Table 'mydb. taggregate_temp_1212047760' doesn't exist' on query. Default database: 'mydb'. Query: 'UPDATE thread AS thread,taggregate_temp_1212047760 AS aggregate SET thread.views = thread.views + aggregate.views WHERE thread.threadid = aggregate.threadid' Skip_Counter: 0 Exec_Master_Log_Pos: 203015142 Relay_Log_Space: 166325247 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: NULL 1 row in set (0.00 sec) mysql>

HowtoForge Forums
q

Ubuntu 11.10 with icinga monitorin ubuntu 11.10 ... Problem with my VPS and /etc/fstab 2 Sites On ISPConfig - Shows Same Content Unable to connect to the specified MySQL server ... Install horde ISPConfig Not Recognized - Sites Display ... VMWARE - Centos 6.2 - Problem with hdds Mail and FTP doesnt work ISPConfig 3 Centos 6 Slow Sites Problem with adding new mail adresses

News
q

DistroWatch Weekly, Issue 452, 16 April 2012 Larry vs Larry: Oracle and Google in courtroom smackdown

2 Repairing The Replication


Just to go sure, we stop the slave:

http://www.howtoforge.com/how-to-repair-mysql-replication (3 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials


q

Don't forget the newbies! An OS in the Public Interest a Mandriva Linux Foundation? LibreOffice Tips: Inserting Quran text in LibreOffice Writer Latest Release Of Linux Contains Code Developed Via Google Plus Interview with Aviv Sharon of Wildfire Games How to easily create your own Google Chrome theme Softpedia Linux Weekly, Issue 195 RSSOwl 2.1.2: The Best News Feed Reader for Ubuntu/ Linux more

mysql> STOP SLAVE;

Fixing the problem is actually quite easy. We tell the slave to simply skip the invalid SQL query:

Recent comments
q

bin file problem 1 day 3 hours ago Do I need to format/clean the hard drive before replacing? 1 day 5 hours ago Thank you very much! 1 day 6 hours ago Missing package dovecotmysql 2 days 12 hours ago How to Running Drupal on Nginx + php-fpm + apc in Russian 2 days 13 hours ago Re: Working solution without reinstalling anything 3 days 7 hours ago Re: SSL? 3 days 8 hours ago Re: Re: using OTP and nonOTP simultaneously 3 days 8 hours ago Re: re:Install and Configure

mysql> SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;

This tells the slave to skip one query (which is the invalid one that caused the replication to stop). If you'd like to skip two queries, you'd use SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 2; instead and so on. That's it already. Now we can start the slave again...

mysql> START SLAVE;

... and check if replication is working again:

mysql> SHOW SLAVE STATUS \G

mysql> SHOW SLAVE STATUS \G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 1.2.3.4 Master_User: slave_user

http://www.howtoforge.com/how-to-repair-mysql-replication (4 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

OpenLDAP on Ubuntu Karmic Koala 3 days 12 hours ago


q

Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.001079 Read_Master_Log_Pos: Relay_Log_File: Relay_Log_Pos: Relay_Master_Log_File: 447560366 slave-relay.000130 225644062 mysql-bin.001079

A GREAT TUTORIAL THAT WORKS!!! STRANGE 3 days 13 hours ago

Newsletter
Subscribe to HowtoForge Newsletter and stay informed about our latest HOWTOs and projects.
enter email address

Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: mydb Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 447560366 Relay_Log_Space: 225644062 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0 1 row in set (0.00 sec) mysql> As you see, both Slave_IO_Running and Slave_SQL_Running are set to Yes now. Now leave the MySQL shell...

Submit
(To unsubscribe from our newsletter, visit this link.)

mysql> quit;

... and check the log again:

grep mysql /var/log/syslog


http://www.howtoforge.com/how-to-repair-mysql-replication (5 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

server1:/home/admin# grep mysql /var/log/syslog May 29 09:56:08 http2 mysqld[1380]: 080529 9:56:08 [ERROR] Slave: Error 'Table 'mydb. taggregate_temp_1212047760' doesn't exist' on query. Default database: 'mydb'. Query: 'UPDATE thread AS thread,taggregate_temp_1212047760 AS aggregate May 29 09:56:08 http2 mysqld[1380]: ^ISET thread.views = thread.views + aggregate.views May 29 09:56:08 http2 mysqld[1380]: ^IWHERE thread.threadid = aggregate.threadid', Error_code: 1146 May 29 09:56:08 http2 mysqld[1380]: 080529 9:56:08 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'mysql-bin.001079' position 203015142 May 29 11:42:13 http2 mysqld[1380]: 080529 11:42:13 [Note] Slave SQL thread initialized, starting replication in log 'mysql-bin.001079' at position 203015142, relay log '/var/lib/mysql/slave-relay.000130' position: 100125935 server1:/home/admin# The last line says that replication has started again, and if you see no errors after that line, everything is ok.

3 Links
q

MySQL: http://www.mysql.com Copyright 2008 Falko Timme All Rights Reserved.

add comment |

view as pdf |

print

Related Tutorials
q

Setting Up Master-Master Replication With MySQL 5 On Debian Etch Master-Master Replication With MySQL 5 On Fedora 8 How To Set Up Database Replication In MySQL Please do not use the comment function to ask for help! If you need help, please use our forum. Comments will be published after administrator approval.

Slave_IO_Running: No and Seconds_Behind_Master: NULL


Submitted by Ramanath (not registered) on Mon, 2011-03-14 11:13.

What i have to do if Slave_IO_Running: No and Seconds_Behind_Master: NULL. Please help me.I am waiting for your
http://www.howtoforge.com/how-to-repair-mysql-replication (6 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

response. http://www.howtoforge.com/how-to-repair-mysql-replication.. In this link you have mentioned the solution for Slave_SQL_Running: No.Please suggest me for Slave_IO_Running: No and Seconds_Behind_Master: NULL
reply | view as pdf

Thank you. I got replication working

Submitted by Farshid (not registered) on Sat, 2010-10-23 23:13. Thank you. I got replication working without having to rebuild in middle of night remotely!
reply | view as pdf

Thanks

Submitted by sureshkumar (not registered) on Fri, 2009-07-03 10:46. Thanks.......... Good work ...

reply |

view as pdf

Be careful, though...

Submitted by Richard (not registered) on Thu, 2009-01-15 16:51. Bear in mind that any time you have a query which *did* successfully execute on the master and is skipped on the slave and you use a SQL_SLAVE_SKIP_COUNTER method to "fix" the problem, your master and slave are now no longer in sync. Yes, this is sometimes necessary, but if it is a recurring issue, then the problems go much deeper than merely broken replication.
reply | view as pdf

Re: Be careful, though...

Submitted by Anonymous (not registered) on Tue, 2009-11-24 07:42. noted that this is not the proper "fix" for the problem, but we are missing your proposed solution

http://www.howtoforge.com/how-to-repair-mysql-replication (7 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

reply |

view as pdf

Re: Be careful, though...

Submitted by Anonymous (not registered) on Thu, 2009-01-29 21:20. True, but, sometimes the slave will try to execute things that don't apply like a "drop trigger" statement for a trigger that doesn't ever exist because the slave is only replicating specific tables.
reply | view as pdf

Re: Be careful, though...

Submitted by Anonymous (not registered) on Sun, 2009-01-18 01:43. Indeed. And if you skip a query to 'fix' the replication, you run the very serious risk that the replication will become even more out of sync further down the line. This isn't fixing, it's just brushing the problem under the carpet and hoping it goes away. If you must skip a query, look at the query first, and be sure its absence won't cause future queries to fail
reply | view as pdf

Automated Script Inquiry

Submitted by Perry Whelan (not registered) on Wed, 2008-10-22 17:32. I'm managing an infrastructure with a number of databases who (for codified reasons that I cannot influence) suffer from this situation often. So, I've written a cron script to manage the situation. Does anyone see any foreseeable issues with this logic (see below)?
#!/bin/bash ## Tool to unstick MySQL Replicators. ## Set to run from cron once a minute. # */1 * * * * /usr/local/bin/whipSlave.mysql.sh > /dev/null 2>&1 # Last updated: MM/DD/YYYY COMMANDS="mysql grep awk logger" export PATH='/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin' for i in $COMMANDS
http://www.howtoforge.com/how-to-repair-mysql-replication (8 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

do X=`echo $i | tr '[a-z]' '[A-Z]'` export $X=`type -p $i` done # Define variables USERNAME=dbuser PASSWORD=password # Define Functions ## Obtain MwSQL slave server status function SLAVE() { STATUS=`$MYSQL -u $USERNAME -p$PASSWORD -e \ "SHOW SLAVE STATUS \G" | $GREP Seconds_Behind_Master | $AWK '{print $2}'` } ## Skip errors function UNSTICK() { $MYSQL -u $USERNAME -p$PASSWORD -e \ "STOP SLAVE; SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; START SLAVE;" sleep 5 # Check everything again CHECK } ## Decide what to do... function CHECK() { # Obtain status SLAVE if [ $STATUS = NULL ] then # I think the replicator is broken echo "MySQL Slave database is not replicating. Fixing..." | $LOGGER UNSTICK else # Everything should be fine
http://www.howtoforge.com/how-to-repair-mysql-replication (9 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

echo "MySQL Slave is $STATUS seconds behind its Master." | $LOGGER fi } ## Are we running? function ALIVE() { UP=`$MYSQL -u $USERNAME -p$PASSWORD -e \ "SHOW SLAVE STATUS \G" | $GREP Slave_IO_Running | $AWK '{print $2}'` if [ $UP = Yes ] then # Let's check if everything is good, then... CHECK else # Uh oh...let's not do anything. echo "MySQL Slave IO is not running!" | $LOGGER exit 1 fi } # How is everything? ALIVE #EoF exit 0 reply | view as pdf

Re: Automated Script Inquiry

Submitted by Jeff Buchbinder (not registered) on Thu, 2009-01-15 17:33. This might be a little bit simpler (works with MySQL 5.0+, I believe):

#!/bin/bash done=0 while [ $done -eq 0 ]; do # get status done=$( mysql -Be 'show slave status;' | tail -1 | cut -f12 | grep Yes | wc -l ) if [ $done -eq 0 ]; then echo "Advancing position past [$(mysql -Be 'show slave status;' | tail -1 | cut http://www.howtoforge.com/how-to-repair-mysql-replication (10 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

f20)]... " mysql -uroot -Be "SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; start slave;" sleep 1 fi done
reply | view as pdf

Re: Re: Automated Script Inquiry

Submitted by Anonymous (not registered) on Sat, 2011-10-01 14:42.

while [ ! "`mysql -uroot -Be 'SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1; start slave;'`" ] do echo "Skipped one Error" sleep 1 done ; echo "All set"

reply |

view as pdf

Howtos | Mini-Howtos | Forums | News | Search | Contribute | Subscription Site Map/RSS Feeds | Advertise | Contact | Disclaimer | Imprint

http://www.howtoforge.com/how-to-repair-mysql-replication (11 of 12)16/04/12 22:32:01

How To Repair MySQL Replication | HowtoForge - Linux Howtos and Tutorials

Copyright 2012 HowtoForge - Linux Howtos and Tutorials All Rights Reserved.

http://www.howtoforge.com/how-to-repair-mysql-replication (12 of 12)16/04/12 22:32:01

S-ar putea să vă placă și