include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] create table t1 (n int); reset master; stop slave; include/wait_for_slave_to_stop.inc change master to master_port=SLAVE_PORT; start slave; include/wait_for_slave_to_start.inc insert into t1 values (1); select * from t1; n 1 1 stop slave; include/wait_for_slave_to_stop.inc drop table t1; reset master; create table t1(n int); create table t2(n int); change master to master_port=MASTER_PORT; start slave until master_log_file='master-bin.000001', master_log_pos=UNTIL_POS; include/wait_for_slave_io_to_start.inc include/wait_for_slave_sql_to_stop.inc *** checking until position execution: must be only t1 in the list *** show tables; Tables_in_test t1 start slave sql_thread; drop table t1; drop table t2; include/sync_slave_sql_with_master.inc include/rpl_end.inc