MySQL 起動時にエラーと思われるメッセージが表示されるようになった

結論としては、問題はないようだ。

起動時にメッセージが出るようになった

% sudo /etc/init.d/mysql restart
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for corrupt, not cleanly closed and upgrade needing tables..

修復を試みる

% sudo mysqlcheck --check-upgrade --all-databases --auto-repair --user=yourname --password=yourpassword
% sudo mysql_fix_privilege_tables --user=yourname --password=yourpassword

をしてみるが、

% sudo /etc/init.d/mysql restart
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for corrupt, not cleanly closed and upgrade needing tables..

と消えない。

どうも問題があるメッセージではないらしい

Re: Checking for corrupt, not cleanly closed and upgrade needing tables
It's not an error! It's just mysqld telling you what it is doing

"I am now Checking for corrupt [tables]"
"[I am now checking for ], not cleanly closed [tables] and "
"[I am now checking for ] upgrade needing tables"

Mark

http://ubuntuforums.org/showthread.php?t=598657