标签:file sla width lazy 程序 stat str 重启 http
在从数据库中查询
show slave status
Slave_SQL_Running: No
1、程序可能在从数据库中进行了写操作
2、也可能是从数据库 机器重启后,事务回滚造成的。
解决方法
在主库中查询 Show master status;
在从库中执行
STOP SLAVE;
CHANGE MASTER TO
MASTER_HOST=‘192.168.127.134‘,
MASTER_USER=‘repl‘,
MASTER_PASSWORD=‘Larry@123456‘,
MASTER_LOG_FILE=‘larry_mysql.000001‘,
MASTER_LOG_POS=9283;
START SLAVE;
标签:file sla width lazy 程序 stat str 重启 http
原文地址:https://www.cnblogs.com/linlf03/p/13969529.html