Mysql 主从同步失效的解决方法

进入 从 mysql 服务器,运行:

mysql> show slave status\G;

         .......
          Relay_Log_File: localhost-relay-bin.000535
          Relay_Log_Pos: 21795072
         Relay_Master_Log_File: localhost-bin.000094
         Slave_IO_Running: Yes
         Slave_SQL_Running: No
         Replicate_Do_DB:
        Replicate_Ignore_DB:
       ......

 

Slave_SQL_Running: No
1.程序可能在 从 mysql 上进行了写操作
2.也可能是 从 mysql 机器重起后,事务回滚造成的

解决办法 一:
mysql> stop slave;
mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
mysql> start slave;

 

解决办法 二:

先停掉 从 mysql 服务:stop slave;
到主 mysql 服务器上查看主机状态,记录 File 和 Position 对应的值:

mysql> show master status;
+----------------------+----------+--------------+------------------+
| File                            | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+----------------------+----------+--------------+------------------+
| localhost-bin.000094 | 3362 |              |                  |
+----------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

 

然后到 从 mysql 服务器上执行手动同步:

mysql> change master to
> master_host='master_ip',
> master_user='user',
> master_password='pwd',
> master_port=3306,
> master_log_file=localhost-bin.000094',
> master_log_pos=3362 ;
1 row in set (0.00 sec)
mysql> slave start;
1 row in set (0.00 sec)

 

mysql> show slave status\G;
*************************** 1. row ***************************
........
           Master_Log_File: localhost-bin.000094
           Read_Master_Log_Pos: 33768775
           Relay_Log_File: localhost-relay-bin.000537
           Relay_Log_Pos: 1094034
           Relay_Master_Log_File: localhost-bin.000094
           Slave_IO_Running: Yes
           Slave_SQL_Running: Yes

手动同步需要停止 主 mysql 的写操作

--------------------------------------------

查看当前 mysql 数据库的配置文件内的 server_id 的方法:
mysql> use mysql;
mysql> show variables like 'server_id';

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值