我正在从 MySQL v 5.5.50 主服务器复制到 RDS 中托管的 MySQL v 5.5.46 从服务器。我已经按照 AWS 文档了解了如何严格执行此操作,将转储文件导入到从属服务器中,并在CALL mysql.rds_set_external_master...
几天前运行命令来开始操作。
我的SHOW MASTER STATUS;
结果是:
+---------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+---------------------+----------+--------------+------------------+
| mysql-binlog.000023 | 48684053 | | |
+---------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
Run Code Online (Sandbox Code Playgroud)
我的SHOW SLAVE STATUS \G;
结果是:
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: [master host IP here]
Master_User: [local replication user here]
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-binlog.000023
Read_Master_Log_Pos: …
Run Code Online (Sandbox Code Playgroud)