mysql 起動時にInnoDBのエラー

my.cnf で、innodb_log_file_size の値をいじったあとには、必ずInnoDBログファイルを削除しないとエラーになる。

InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 67108864 bytes!
100319 19:37:17 [ERROR] Plugin ‘InnoDB’ init function returned error.
100319 19:37:17 [ERROR] Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed.
100319 19:48:43ツꀀ InnoDB: Log file ./ib_logfile0 did not exist: new to be created

/var/lib/mysql

rm -f ib_logfile?
でログを削除すること

mysql 起動時にInnoDBのエラー