MySQLが何度も「Starting crash recovery」を実行する

ポイ探ではありませんが、他のサイトでMySQLの接続が不安定になる不具合がありました。MySQLのログを見ると下記のようになっています。

****** 11:02:44 mysqld_safe Number of processes running now: 0
****** 11:02:44 mysqld_safe mysqld restarted
****** 11:02:45 InnoDB: Initializing buffer pool, size = 8.0M
****** 11:02:45 InnoDB: Completed initialization of buffer pool
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
****** 11:02:45 InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
InnoDB: Last MySQL binlog file position 0 27378, file name ./mysql-bin.000015
****** 11:02:45 InnoDB: Started; log sequence number 0 1487447705
****** 11:02:45 [Note] Recovering after a crash using mysql-bin
****** 11:02:45 [Note] Starting crash recovery...
****** 11:02:45 [Note] Crash recovery finished.
****** 11:02:45 [Note] Event Scheduler: Loaded 0 events
****** 11:02:45 [Note] /usr/local/mysql/libexec/mysqld: ready for connections.
Version: '5.*.**-log' socket: '/tmp/mysql.sock' port: **** Source distribution

このログが、MySQLにアクセスされるたびに出力され、バイナリファイルがどんどんインクリメントされていきます。

続きを読む

WodrPressのピンバックURLが200バイト制限で「400 Bad Request」になる問題

WordPressには記事を参考にしましたというピンバック機能があり、自サイト内でもその機能が有効になっています。先日、ふと自分のピンバックURLをクリックすると「400 Bad Request」と表示されました。いくつかのURLをクリックしてみましたが「400 Bad Request」です。

このブログはパーマリンクを日本語利用しているため、URLが長くなっています。この記事のパーマリンクの長さは238バイトで、WordPressのURL制限が200バイトとなっているため、データベースには200バイトまで登録され、38バイトは切り取られてしまいます。

本当のURL

http://takahitokikuchi.poitan.net/2012/10/02/wodrpress%E3%81%AE%E3%83%94%E3%83%B3%E3%83%90%E3%83%83%E3%82%AFurl%E3%81%8C200%E3%83%90%E3%82%A4%E3%83%88%E5%88%B6%E9%99%90%E3%81%A7%E3%80%8C400-bad-request%E3%80%8D%E3%81%AB%E3%81%AA%E3%82%8B/

データベース内のURL

http://takahitokikuchi.poitan.net/2012/10/02/wodrpress%E3%81%AE%E3%83%94%E3%83%B3%E3%83%90%E3%83%83%E3%82%AFurl%E3%81%8C200%E3%83%90%E3%82%A4%E3%83%88%E5%88%B6%E9%99%90%E3%81%A7%E3%80%8C400-bad-reques

続きを読む