You may have a pleasant surprise, but here goes:
Launch SHOW SLAVE STATUS\G For example, let's say you get the following:
Slave_IO_State: Waiting for master to send event Master_Host: 10.64.68.253 Master_User: replusername Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.003202 Read_Master_Log_Pos: 577991837 Relay_Log_File: relay-bin.010449 Relay_Log_Pos: 306229695 Relay_Master_Log_File: mysql-bin.003202 Slave_IO_Running: Yes Slave_SQL_Running: Yes 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: 577991837 Relay_Log_Space: 306229695 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
On the display, select the following:
Relay_Master_Log_File ( mysql-bin.003202 )Exec_Master_Log_Pos ( 577991837 )
Here's why: Relay_Master_Log_File and Exec_Master_Log_Pos present a binlog entry from the master, which made it a slave and was successfully executed. Just from there from there.
You would simply run this code: Exec_Master_Log_Pos
STOP SLAVE; CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.003202', MASTER_LOG_POS=577991837; START SLAVE;
Give it a try !!!
CAVEAT
If Relay_Master_Log_File no longer exists on the Wizard, you may have to damage it a bit. Given the SHOW SLAVE STATUS\G mentioned above, you may need to go to the next binary log on Master as follows:
STOP SLAVE; CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.003203', MASTER_LOG_POS=4; START SLAVE;
If replication catches up with you, you are not out of the woods. You may need to download the Percona Toolkit and run pt-table-checksum and pt -table-sync to recover the lost data in the Slave.
If replication does not go off the ground, you will have to perform due diligence and reboot Slave.
I hope you donβt have to do anything in this caution if replication works with the original sentence.