Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


In this Discussion

MySQL: Slave SQL Thread not running
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

MySQL: Slave SQL Thread not running

J1021J1021 Member

Any ideas?

Comments

  • Are you running master / master or master / slave?

  • J1021J1021 Member

    SysAdmin said: Are you running master / master or master / slave?

    Master / Slave. Previously had this working okay but now trying to move the slave to a new host.

  • Look at the slave status, it's possible there has been an error such as a duplicate primary key which has stopped the process. If that's the case, you can skip the error and start the process again:

    STOP SLAVE;
    SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
    START SLAVE;
    SHOW SLAVE STATUS \G;

Sign In or Register to comment.