Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed解决方法

凉白开 MySQLPlugin ‘InnoDB’ registration as a STORAGE ENGINE failed解决方法已关闭评论39,436字数 726阅读2分25秒阅读模式

原先一台数据库未安装Innodb引擎,今天动态增加他,发现innodb加载不了,报错Plugin 'InnoDB' registration as a STORAGE ENGINE failed,从详细日志里面发现创建log file创建失败。详细日志如下:

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文件没有删除,导致从新加载的时候出现这个问题。解决方法很简单文章源自运维生存时间-https://www.ttlsa.com/mysql/plugin-innodb-registration-as-a-storage-engine-failed/

rm -rf ib_logfile*

然后重新动态加载一次innodb即可,如果不行,那么重启一下mysql.文章源自运维生存时间-https://www.ttlsa.com/mysql/plugin-innodb-registration-as-a-storage-engine-failed/

来源站点:运维生存时间  来源网址:https://www.ttlsa.com/html/3412.html文章源自运维生存时间-https://www.ttlsa.com/mysql/plugin-innodb-registration-as-a-storage-engine-failed/ 文章源自运维生存时间-https://www.ttlsa.com/mysql/plugin-innodb-registration-as-a-storage-engine-failed/

weinxin
我的微信
微信公众号
扫一扫关注运维生存时间公众号,获取最新技术文章~
凉白开
  • 本文由 发表于 17/10/2013 00:57:04
  • 转载请务必保留本文链接:https://www.ttlsa.com/mysql/plugin-innodb-registration-as-a-storage-engine-failed/
  • innodb
  • Mysql动态加载innodb
  • storage