File/Pos Replication : Skip Slave's sql_thread error [COMMAND]
File/Pos Replication : Skip Slave's sql_thread error [COMMAND]
For binlog file & position based replication setup, To skip the slave's sql_thread error, run below command.
stop slave;
set global sql_slave_skip_counter=1;
start slave;
select sleep(3);
show slave status\G
Comments
Post a Comment