master [localhost] {msandbox} (test) > insert into mw values( 6); Query OK, 1 row affected (0.00 sec) master [localhost] {msandbox} (test) > insert into mw values( 7); Query OK, 1 row affected (0.00 sec) master [localhost] {msandbox} (test) > show master status; +------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+----------+--------------+------------------+ | mysql-bin.000003 | 257 | | | +------------------+----------+--------------+------------------+ 1 row in set (0.00 sec) slave1 [localhost] {msandbox} ((none)) > stop slave; Query OK, 0 rows affected (0.02 sec) slave1 [localhost] {msandbox} ((none)) > show slave status\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 127.0.0.1 Master_User: msandbox Master_Port: 28065 Connect_Retry: 60 Master_Log_File: mysql-bin.000003 Read_Master_Log_Pos: 257 Relay_Log_File: mysql_sandbox28066-relay-bin.000006 Relay_Log_Pos: 325 Relay_Master_Log_File: mysql-bin.000003 Slave_IO_Running: No Slave_SQL_Running: No Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 257 Relay_Log_Space: 325 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 0 1 row in set (0.01 sec) master [localhost] {msandbox} (test) > insert into mw values( 8); Query OK, 1 row affected (0.00 sec) master [localhost] {msandbox} (test) > insert into mw values( 9); Query OK, 1 row affected (0.01 sec) master [localhost] {msandbox} (test) > insert into mw values( 9); Query OK, 1 row affected (0.01 sec) master [localhost] {msandbox} (test) > show master status; +------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+----------+--------------+------------------+ | mysql-bin.000003 | 437 | | | +------------------+----------+--------------+------------------+ 1 row in set (0.00 sec) master [localhost] {msandbox} (test) > insert into mw values( 9); Query OK, 1 row affected (0.00 sec) master [localhost] {msandbox} (test) > show master status; +------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+----------+--------------+------------------+ | mysql-bin.000003 | 497 | | | +------------------+----------+--------------+------------------+ 1 row in set (0.00 sec) master [localhost] {msandbox} (test) > insert into mw values( 9); Query OK, 1 row affected (0.01 sec) master [localhost] {msandbox} (test) > show master status; +------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+----------+--------------+------------------+ | mysql-bin.000003 | 557 | | | +------------------+----------+--------------+------------------+ 1 row in set (0.00 sec) slave1 [localhost] {msandbox} ((none)) > start slave until master_log_file='mysql-bin.000003', master_log_pos=437; Query OK, 0 rows affected, 1 warning (0.01 sec) slave1 [localhost] {msandbox} ((none)) > show slave status\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 127.0.0.1 Master_User: msandbox Master_Port: 28065 Connect_Retry: 60 Master_Log_File: mysql-bin.000003 Read_Master_Log_Pos: 617 Relay_Log_File: mysql_sandbox28066-relay-bin.000007 Relay_Log_Pos: 389 Relay_Master_Log_File: mysql-bin.000003 Slave_IO_Running: Yes Slave_SQL_Running: No Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 497 Relay_Log_Space: 513 Until_Condition: Master Until_Log_File: mysql-bin.000003 Until_Log_Pos: 437 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: NULL 1 row in set (0.01 sec)