Home > Database > Mysql Tutorial > MySQL主从复制中出现的error和解决办法

MySQL主从复制中出现的error和解决办法

WBOY
Release: 2016-06-07 17:17:35
Original
1020 people have browsed it

MySQL主从复制中出现的error和解决办法,如果日志中出现了这样代码,可能是错误的select,或update操作,master是跳过这些操作,但

slave日志中的错误代码1:

  • 解决办法:

    先查看主服务器中对应日志文件是否有此行,使用的命令是

    mysqlbinlog  /YOURPATH/'mysql-bin.000016 >>/test

    如果你找不到455562或者和这个数字很接近的行,你可以使用如下命令查看'mysql-bin.000016 的行数

  • ls -la mysql-bin.000016  
  • 错误类型代码2:

    mysql slave Error_code: 1062  1054

    如果日志中出现了这样代码,可能是错误的select,或update操作,master是跳过这些操作,但是被记录到了二进制日志中,slave会依据二进制中的语句做相同的动作,就会报错,知道原理了要做的操作就很简单了

  • 如果你不想再遇到这种错误,,可以写到slave配置文件中格式如下:

  • linux

  • Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template