InnoDB:错误:日志文件./ib_logfile0的大小不同


106

我将一个数据库转换为使用InnoDB引擎后,在/etc/mysql/my.cnf中添加了以下几行。

innodb_buffer_pool_size = 2560M
innodb_log_file_size    = 256M
innodb_log_buffer_size  = 8M
innodb_flush_log_at_trx_commit  = 2
innodb_thread_concurrency   = 16
innodb_flush_method = O_DIRECT

但是,它会在重新启动mysqld时引发“错误2(HY000)在第2行:在查询期间与MySQL服务器的连接丢失”错误。和mysql错误日志显示以下内容

InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 268435456 bytes!
100118 20:52:52 [ERROR] Plugin 'InnoDB' init function returned error.
100118 20:52:52 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
100118 20:52:52 [ERROR] Unknown/unsupported table type: InnoDB
100118 20:52:52 [ERROR] Aborting

所以我注释了这一行

# innodb_log_file_size  = 256M

并且它成功重启了mysql。

我想知道在mysql错误中显示的“ 5242880字节的日志文件”是什么?它是此服务器上InnoDB引擎上的第一个数据库,因此该日志文件何时何地创建?在这种情况下,如何在my.cnf中启用innodb_log_file_size指令?

编辑

我试图删除/ var / lib / mysql / ib_logfile0并重新启动mysqld,但仍然失败。现在,它在错误日志中显示以下内容。

100118 21:27:11  InnoDB: Log file ./ib_logfile0 did not exist: new to be created
InnoDB: Setting log file ./ib_logfile0 size to 256 MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Progress in MB: 100 200
InnoDB: Error: log file ./ib_logfile1 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 268435456 bytes!

解析度

在/ var / lib / mysql中删除ib_logfile0和ib_logfile1之后,它现在可以工作

Answers:


121

InnoDB对它的配置非常挑剔。如果有什么不对劲,那就放弃并回家。要更改日志文件的大小而不丢失数据:

  1. 恢复对日志文件大小所做的所有配置更改,然后再次启动MySQL。
  2. 在运行的MySQL中:SET GLOBAL innodb_fast_shutdown = 0;
  3. 停止MySQL
  4. 对日志文件大小进行配置更改。
  5. 删除两个日志文件。
  6. 启动MySQL。它会抱怨缺少日志文件,但是会创建它们,一切都会好起来的。

1
嗨,感谢您的回答,我尝试了您的方法,但仍然失败。
杰克

44
删除ib_logfile0和ib_logfile1可以为我解决问题。
Temnovit 2012年

1
为了我 非常感谢您,我们的维基又回来了!
斯蒂芬·肯尼迪

1
由于我要重新放置一个新安装的数据库,因此我跳过了步骤1-4,从5开始-它起作用了:)
Limbo Peng 2014年

感谢@Temnovit删除这2个文件也为我做了窍门。
bashan 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.