stop slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; SHOW SLAVE STATUS;; SHOW SLAVE HOSTS; Server_id Host Port Rpl_recovery_rank Master_id 2 127.0.0.1 SLAVE_PORT 0 1 create table t1 ( n int); insert into t1 values (1),(2),(3),(4); insert into t1 values(5); SELECT * FROM t1 ORDER BY n; n 1 2 3 4 5 SELECT * FROM t1 ORDER BY n; n 1 2 3 4 SELECT * FROM t1 ORDER BY n; n 1 2 3 4 SELECT * FROM t1 ORDER BY n; n 1 2 3 4 5 drop table t1;