• ADADADADAD

    mysql中如何处理Plugin 'InnoDB' registration as a STORAGE ENGINE failed错误[ mysql数据库 ]

    mysql数据库 时间:2024-11-26 22:13:38

    作者:文/会员上传

    简介:

    Plugin 'InnoDB' registration as a STORAGE ENGINE failed,从详细错误日志里面发现创建log file创建失败。详细日志如下:1234567InnoDB: If this error appears when

    以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。

    Plugin 'InnoDB' registration as a STORAGE ENGINE failed,从详细错误日志里面发现创建log file创建失败。详细日志如下:

    1

    2

    3

    4

    5

    6

    7

    InnoDB: If this error appears when you are creating an InnoDB database,

    InnoDB: the problem may be that during an earlier attempt you managed

    InnoDB: to create the InnoDB data files, but log file creation failed.

    InnoDB: If that is the case, please refer to

    InnoDB: http://dev.mysql.com/doc/refman/5.1/en/error-creating-innodb.html

    131017 0:45:52 [ERROR] Plugin 'InnoDB' init function returned error.

    131017 0:45:52 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.

    其实之前这台服务器有加载过innodb,后来卸掉了,但是logfile文件没有删除,导致从新加载的时候出现这个问题。解决方法很简单
    进入mysql数据路径
    /var/lib/mysql

    1

    rm -rf ib_logfile*

    mysql服务重启

    热门标签: mysqlinnodb