The MySQL master-slave service stops the slave server from executing the start replication command on the machine. An error occurred
Troubleshooting
The slave server cannot be modified while the IO thread is on, so we need to close the IO thread
mysql> STOP SLAVE IO_THREAD; Query OK, 0 rows affected (0.00 sec) mysql> change master to master_host='192.168.0.99',master_port=3307,master_user='copy',master_password='copy',master_log_file='mysql-bin.000001',master_log_pos=154; Query OK, 0 rows affected, 2 warnings (0.00 sec) mysql> START SLAVE IO_THREAD; Query OK, 0 rows affected (0.00 sec)