3

MySQLServer5.5をWindowsServer2008 R2に2か月前にインストールしましたが、現在は機能しています。しかし、突然MySQLサービスがダウンし、サービスを再開できなくなりました。エラーメッセージ:

121120 14:33:31 [Note] Plugin 'FEDERATED' is disabled.
121120 14:33:31 InnoDB: The InnoDB memory heap is disabled
121120 14:33:31 InnoDB: Mutexes and rw_locks use Windows interlocked functions
121120 14:33:31 InnoDB: Compressed tables use zlib 1.2.3
121120 14:33:31 InnoDB: Initializing buffer pool, size = 2.0G
121120 14:33:31 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file .\ib_logfile0 is of different size 0 95420416 bytes
InnoDB: than specified in the .cnf file 0 224395264 bytes!
121120 14:33:31 [ERROR] Plugin 'InnoDB' init function returned error.
121120 14:33:31 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
121120 14:33:31 [ERROR] Unknown/unsupported storage engine: INNODB
121120 14:33:31 [ERROR] Aborting

121120 14:33:31 [Note] C:\Program Files\MySQL\MySQL Server 5.5\bin\mysqld: Shutdown complete

この問題を解決するにはどうすればよいですか?

4

1 に答える 1

2

これはエラーです:

InnoDB: Error: log file .\ib_logfile0 is of different size 0 95420416 bytes
InnoDB: than specified in the .cnf file 0 224395264 bytes!

できることは、その.cnfファイルを検索し、バイトをから224395264に変更することです。95420416

たぶんそれは助けになります...

ここでのメンションとしての更新: InnoDBログファイルサイズの変更

サーバーが実行されていないときにログファイル(。\ ib_logfile0)を削除しても、問題は発生しなくなります...

于 2012-11-20T09:14:21.400 に答える