mysql8.0数据库恢复_恢复删除记录

mysql8.0数据库恢复_恢复删除记录今天登录一个MySQL数据库slave节点主机发现/var/lib/mysql下存放大量的mysql-relay-bin文件,最早的文件创建日期甚至是2018年,我记得在slave库同步完maste…

一次MySQL Slave库恢复实战记录

mysql> show slave statusG;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: *.*.*.*
                  Master_User: dbsync
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000095
          Read_Master_Log_Pos: 869242147
               Relay_Log_File: mysqld-relay-bin.000146
                Relay_Log_Pos: 871280529
        Relay_Master_Log_File: mysql-bin.000075
             Slave_IO_Running: Yes
            Slave_SQL_Running: No
              Replicate_Do_DB: cdb,cdb_admin
          Replicate_Ignore_DB: mysql
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 1594
                   Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master"s binary log is corrupted (you can check this by running "mysqlbinlog" on the binary log), the slave"s relay log is corrupted (you can check this by running "mysqlbinlog" on the relay log), a network problem, or a bug in the master"s or slave"s MySQL code. If you want to check the master"s binary log or slave"s relay log, you will be able to know their names by issuing "SHOW SLAVE STATUS" on this slave.
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 871280384
              Relay_Log_Space: 19994786573
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 1594
               Last_SQL_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master"s binary log is corrupted (you can check this by running "mysqlbinlog" on the binary log), the slave"s relay log is corrupted (you can check this by running "mysqlbinlog" on the relay log), a network problem, or a bug in the master"s or slave"s MySQL code. If you want to check the master"s binary log or slave"s relay log, you will be able to know their names by issuing "SHOW SLAVE STATUS" on this slave.
1 row in set (0.00 sec)

ERROR: 
No query specified

代码100分

原因:
我在master节点上删除了名称为mysql-bin.00007格式的文件,其中包括mysql-bin.000075,因此,slave库找不到该文件,无法同步。

解决办法:

  1. 在slave库上重新指定同步位置。(不可行)

    代码100分slave stop;
    CHANGE MASTER TO MASTER_LOG_FILE="mysql-bin.000095",MASTER_LOG_POS=869242147; //mysql master节点上mysql-bin.000095的已有位置
    slave start;

    slave节点上show slave status,依然报错,具体的报错内容没有复制下来,只记得errno为1236,Slave_IO_Running进程不运行,Slave_SQL_Running进程运行,大概描述就是某个库的某个表有问题。
    在多次尝试指定不同的同步位置(报错的位置,master上mysql-bin-000095刚写过的位置)依然存在该错误。
    实际上,表记录已经有问题,就拿描述中提出的那个表来说,slave库存放了约1200条记录,master库则有1900+的记录。除非手工将这些数据补上,否则由于记录操作数据的日志已经丢失(被我删除),是找不到最近的一致的日志操作执行位置的。

  2. 重做slave库。
    由于数据差异太大,而且我觉得不光一张表出现了数据不一样的问题,所以干净点,把从库重做。

1)比对master、slave节点库配置信息,保证一致。(我不知道为什么设置了双主模式,实际上我只有一个实例跑在master节点上啊?)

2)在master、slave节点上查看流量情况(show processlist),保证要重做的slave库上没有业务的流量接入。

3)停止master节点上slave进程。(这个停了以后,我就没开过,不知道有没有问题,待观察)

4)记录master节点上库的日志记录位置,之后备份数据库:

mysql> show master status;
+------------------+-----------+-------------------------------+------------------+
| File | Position  | Binlog_Do_DB | Binlog_Ignore_DB | +------------------+-----------+-------------------------------+------------------+ | mysql-bin.000095 | 871760173 | cdb,cdb_admin | mysql |
+------------------+-----------+-------------------------------+------------------+
1 row in set (0.01 sec)
 mysqldump -u root -p --databases cdb,cdb_admin > bak.master.sql

5)保险起见,备份slave节点库:
mysqldump -u root -p --databases cdb,cdb_admin > bak.slave.sql

6)重做开始:把master库备份文件复制到slave节点上,导入该备份文件
mysql -u root -p < bak.master.sql

7)在slave节点上,重新指定读master日志的位置:

代码100分slave stop;
CHANGE MASTER TO MASTER_LOG_FILE="mysql-bin.000095",MASTER_LOG_POS=871760173; //POS为刚才记录的master节点日志记录位置
slave start;

8)slave节点上 show slave status;此时Slave_IO_Running,Slave_SQL_Running均运行起来了,刷新slave status,Read_Master_Log_Pos数值也开始增加,重新开始同步了。郑州人工授精医院:http://yyk.39.net/hospital/fc964_labs.html

总结:
清理文件时,要注意mysql-bin文件在master、slave节点日志读取和写的位置啊!删之前一定要确认日志位置在master和slave断已被读过,不要乱删,否则搞得slave库无法同步了,就算在slave节点上强行指定master日志读取位置或者跳过该错误,也不排除slave库上数据丢失的可能。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/8335.html

(0)
上一篇 2023-03-03
下一篇 2023-03-03

相关推荐

  • 使用Python编写爬虫

    使用Python编写爬虫在互联网时代,信息爆炸已经成为常态,人们需要从海量的数据中获取指定的信息,而爬虫技术就是一项强大的工具。Python作为一种简洁有效的编程语言,其出色的网络数据抓取功能备受开发人员的青睐,越来越多的人开始使用Python编写爬虫。

    2024-06-30
    52
  • 批量提取字符,除了用Ctrl+E外,还有这2个方法可选[通俗易懂]

    批量提取字符,除了用Ctrl+E外,还有这2个方法可选[通俗易懂]从示例中可以看出,目的是提取门店的编号,但无论在目标单元格中输入1个值,还是2个值,都得不到正确的结果,但快速填充快捷键Ctrl+E的用法是完全

    2023-03-01
    157
  • HBase Filter 过滤器之QualifierFilter详解

    HBase Filter 过滤器之QualifierFilter详解前言: 本文详细介绍了 HBase QualifierFilter 过滤器 Java&Shell API 的使用,并贴出了相关示例代码以供参考。QualifierFilter 基于列名进行过滤

    2023-02-27
    162
  • Python数据类型:变量、数据类型及其应用

    Python数据类型:变量、数据类型及其应用a href=”https://www.python100.com/a/sm.html”font color=”red”免责声明/font/a a href=”https://beian.miit.gov.cn/”苏ICP备2023018380号-1/a Copyright www.python100.com .Some Rights Reserved.

    2023-12-20
    114
  • 使用Pycharm安装Pandas指南

    使用Pycharm安装Pandas指南在Python编程领域中,Pandas是一个非常有用的工具。它提供高效、易于使用的数据结构和数据分析工具。然而,安装Pandas并不总是容易的,特别是当你不知道从哪里开始的时候。在本篇文章中,我们将介绍在Pycharm中如何安装Pandas。

    2024-05-14
    64
  • 使用conda添加源的方法

    使用conda添加源的方法conda是一个跨平台Python包管理器,可以帮助用户创建和管理不同的Python环境,并能够方便地在不同的环境中安装、更新和卸载Python包。

    2024-08-09
    33
  • 使用plsql编程「建议收藏」

    使用plsql编程「建议收藏」第七章 使用PL/SQL编程 初识PL/SQL(Procedure Language & Structured Query Language) PL/SQL是Oracle在标准SQL语言上的过

    2023-02-04
    146
  • 在Ubuntu系统上安装StoneDB数据库[亲测有效]

    在Ubuntu系统上安装StoneDB数据库[亲测有效]今天我会进行StoneDB数据库在Ubuntu 22.04系统下的安装。 严格按照官方文档的步骤执行,看看能否顺利安装。 准备Ubuntu系统 我已在虚拟机中安装好了Ubuntu 22.04版本的系统

    2023-06-03
    144

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注