web-dev-qa-db-ja.com

エラー1236-「バイナリログインデックスファイルで最初のログファイル名が見つかりませんでした」

私たちのセットアップ:

  • マスター:MariaDB 10.0.21
  • スレーブ:MariaDB 10.0.17

レプリケーションは最近まで正常に機能しており、その時点でスレーブのDBをダンプから復元する必要がありました。必要な手順をすべて実行しました。マスターのDBをダンプし、ダンプをスレーブに転送し、古いDBをドロップし、ダンプを実行してDBを復元し、適切なCHANGE MASTERコマンドを実行し、最後にSTART SLAVE

次のエラーが表示されます:Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'

スレーブがマスターから必要とする最初のログファイルはmysql-bin.000289です。これがマスターにあることがわかります: enter image description here

また、マスターのバイナリログインデックスには、このログファイルのエントリがあるようです。 enter image description here

それでもレプリケーションは機能していません-同じエラーが発生し続けます。アイデアが足りません-次に何を確認すればよいですか?


更新:要求に応じたSHOW SLAVE STATUS\Gの出力:

MariaDB [(none)]> SHOW SLAVE STATUS\G
--------------
SHOW SLAVE STATUS
--------------

*************************** 1. row ***************************
               Slave_IO_State: 
                  Master_Host: 127.0.0.1
                  Master_User: replication
                  Master_Port: 1234
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000289
          Read_Master_Log_Pos: 342
               Relay_Log_File: mysqld-relay-bin.000002
                Relay_Log_Pos: 4
        Relay_Master_Log_File: mysql-bin.000289
             Slave_IO_Running: No
            Slave_SQL_Running: Yes
              Replicate_Do_DB: xxx_yyy,xxx_zzz
          Replicate_Ignore_DB: 
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 0
                   Last_Error: 
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 342
              Relay_Log_Space: 248
              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: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 3
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
                   Using_Gtid: No
                  Gtid_IO_Pos: 
1 row in set (0.00 sec)

追加で要求される情報:

root@master [818 18:54:22 /var/lib/mysql]# ls -l /var/lib/mysql/mysql-bin.000289
-rw-rw---- 1 mysql mysql 1074010194 May 19 03:28 /var/lib/mysql/mysql-bin.000289
root@master [819 18:54:29 /var/lib/mysql]# ls mysql-bin.00029*
mysql-bin.000290  mysql-bin.000291  mysql-bin.000292 #(Yes, it was created)
root@master [821 18:56:52 /var/lib/mysql]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 6345382
Server version: 10.0.21-MariaDB-log MariaDB Server

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> SHOW BINARY LOGS;
+------------------+------------+
| Log_name         | File_size  |
+------------------+------------+
| mysql-bin.000279 | 1074114047 |
| mysql-bin.000280 | 1074004090 |
| mysql-bin.000281 | 1074035416 |
| mysql-bin.000282 | 1073895128 |
| mysql-bin.000283 | 1073742000 |
| mysql-bin.000284 | 1074219591 |
| mysql-bin.000285 | 1074184547 |
| mysql-bin.000286 | 1074217812 |
| mysql-bin.000287 | 1022733058 |
| mysql-bin.000288 |     265069 |
| mysql-bin.000289 | 1074010194 |
| mysql-bin.000290 | 1074200346 |
| mysql-bin.000291 |  617421886 |
| mysql-bin.000292 |     265028 |
+------------------+------------+
14 rows in set (0.00 sec)

MariaDB [(none)]> exit
Bye
root@master [821 18:57:24 /var/lib/mysql]# mysqlbinlog mysql-bin.000289 > /tmp/somefile.txt
root@master [822 18:58:13 /var/lib/mysql]# tail /tmp/somefile.txt 
# at 1074010124
#160519  3:28:59 server id 5  end_log_pos 1074010151    Xid = 417608063
COMMIT/*!*/;
# at 1074010151
#160519  3:28:59 server id 5  end_log_pos 1074010194    Rotate to mysql-bin.000290  pos: 4
DELIMITER ;
# End of log file
ROLLBACK /* added by mysqlbinlog */;
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
root@master [823 18:58:31 /var/lib/mysql]# 

/etc/my.cnf.d/server.cnf(抜粋):

# BINARY LOGGING #
log-bin                        = /var/lib/mysql/mysql-bin
expire-logs-days               = 14
sync-binlog                    = 1

編集:Postion 342は存在するようです:

root@master [826 12:15:33 /var/lib/mysql]# grep "end_log_pos 342 " /tmp/somefile.txt
#160517 14:43:13 server id 5  end_log_pos 342   Binlog checkpoint mysql-bin.000288
10
rinogo

自分が思っているマスターに接続していないようです。あなたが持っているように見えるマスター上のバイナリログごとに:

#160519 3:28:59 サーバーID 5

しかし、SHOW SLAVE STATUSに従って、次のように表示されます。

         Master_Server_Id: 3

さらに、ローカルホストに接続しているように見えますが、マスター/スレーブが異なるホスト上にあることを暗示しています:

              Master_Host: 127.0.0.1
6
Andrew

他のすべてが失敗した場合は、スレーブをリセットしてレプリケーションを再開する必要がある場合があります。 https://www.redips.net/mysql/replication-slave-relay-log-corrupted/ から:

# First note current settings
mysql> show slave status\G
# then stop slave
mysql> stop slave;
# make slave forget its replication position in the master's binary log
mysql> reset slave;
# change slave to start reading from stopped position
mysql> change master to master_log_file='mysql-bin.XXX', master_log_pos=XXX;
# start slave
mysql> start slave;
8
Andy Beverley

エラーメッセージが答えです。

SHOW BINARY LOGSクエリの出力を確認します。

+------------------+------------+
| Log_name         | File_size  |
+------------------+------------+
| mysql-bin.000279 | 1074114047 |
| mysql-bin.000280 | 1074004090 |
| mysql-bin.000281 | 1074035416 |
| mysql-bin.000282 | 1073895128 |

Mysql-bin.000278は表示されません。

バイナリログがローテーションしない限り、mysql-bin.indexの内容は間違っています。

mysql-bin.indexの内容を現在存在するbinlogsファイルと比較し、それらが一致することを確認してください。マスターでこれを修正できます

mysql> PURGE BINARY LOGS TO 'mysql-bin.000279';

その後、スレーブに移動して実行します

mysql> STOP SLAVE; START SLAVE;

試してみてください!!!

3
RolandoMySQLDBA

更新:この回答は、一般的なエラー分類をカバーしています。 OPの正確なクエリを最適に処理する方法に関するより具体的な回答については、この質問の他の回答を参照してください

最も重大なレプリケーションエラーの1つです。致命的なエラー1236が発生しました複数の理由が考えられます。そのうちの1つがこの質問のタイトルです。

バイナリログからデータを読み取るときにマスターから致命的なエラー1236が発生しました:「バイナリログインデックスファイルで最初のログファイル名が見つかりませんでした」

このエラーは、スレーブサーバーがレプリケーションに必要なバイナリログがマスターデータベースサーバーに存在しない場合に発生します。

多くのシナリオがこれを引き起こす可能性があります:

  • マスターサーバーは、システム変数expire_logs_daysを介してバイナリログの有効期限が切れました(expire_logs_daysを設定した場合、my.cnf古いバイナリログは自動的に期限切れになり、削除されます。MySQLが新しいbinlogファイルを開くと、古いバイナリログをチェックしてパージしますexpire_logs_daysの値よりも古いもの)
  • 誰かがPURGE BINARY LOGSコマンドまたはrm -fコマンドを介してマスターからバイナリログを手動で削除しました
  • ディスクスペースを要求するために古いバイナリログをアーカイブするcronjobがいくつかあります

この問題を解決するために、私が考えることができる唯一のclean解決策は、マスターサーバーのバックアップまたは他のスレーブからスレーブサーバーを再作成することですレプリケーショントポロジ。

参照: mysqlレプリケーションで致命的なエラーが発生しました

2
AnouarZ