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] **** On Master **** CREATE TABLE t1 (a INT); INSERT INTO t1 VALUES (1),(2),(3); SELECT * FROM t1; a 1 2 3 REPLACE INTO t1 VALUES (4); include/sync_slave_sql_with_master.inc SELECT * FROM t1; a 1 2 3 4 include/check_slave_is_running.inc Should have two binary logs here show binary logs; Log_name File_size master-bin.000001 # master-bin.000002 # DROP TABLE t1; include/sync_slave_sql_with_master.inc include/rpl_end.inc