zoukankan      html  css  js  c++  java
  • 解决主从备份Slave_SQL_Running:No

    mysql> show slave statusG
    
             .......
                 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.程序可能在slave上进行了写操作

    2.也可能是slave机器重起后,事务回滚造成的.

    一般是事务回滚造成的:
    解决办法:

    mysql> stop slave ;
    mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
    mysql> start slave ;

    解决办法二、(推荐)

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

    进入master

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

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

    复制代码
    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=33622483 ;
    1 row in set (0.00 sec)
    mysql> start slave ;
    1 row in set (0.00 sec)
    start slave
    复制代码
    mysql> show slave status
    
                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
                Replicate_Do_DB:
    复制代码

    CHANGE MASTER TO master_host = '192.168.0.61',
    master_port = 3306,
    master_user = 'root',
    master_password = 'root',
    master_log_file = 'mysql-bin.000014',
    master_log_pos = 489;

  • 相关阅读:
    物料描述不可更新(分配组织后)
    完工任务不允许更改需求
    作业需求更改,限制车间人员只允许修改子库
    只允许更改**类型的任务需求
    车间任务移动完工时检验倒冲子库
    有库存不能停用子库存
    不允许修改标准作业需求
    PHP关于重写与重载
    面向对象的三个基本特征 封装 继承 多态
    PHP中的面向对象 中的类(class)
  • 原文地址:https://www.cnblogs.com/MisterLiu/p/11320726.html
Copyright © 2011-2022 走看看