Slave_IO_Running : yes
Slave_SQL_Running : no
那就是同步可能卡在了sql 执行这里了。再看下
Master_Log_File: mysql-bin.000060
Read_Master_Log_Pos: 208
应该是不对的。我直接在 master 上 执行
show master status\G;
找到了准确的 信息,然后在slave 执行 CHANGE MASTER TO
MASTER_LOG_FILE
MASTER_LOG_POS
然后就OK了。
奇怪目前竟然 没有在my.cnf 里面找到能设置 这两个参数的地方??
只能用 CHANGE MASTER TO 来更新~~~