博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MariaDB报错Plugin 'InnoDB' init function returned error.解决方案
阅读量:5221 次
发布时间:2019-06-14

本文共 1686 字,大约阅读时间需要 5 分钟。

重新安装MariaDB后,服务一直启动不起来,查看日志有以下错误:

InnoDB: No valid checkpoint found.    InnoDB: If you are attempting downgrade from MySQL 5.7.9 or later,    InnoDB: please refer to http://dev.mysql.com/doc/refman/5.6/en/upgrading-downgrading.html    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.6/en/error-creating-innodb.html    170928 14:28:08 [ERROR] Plugin 'InnoDB' init function returned error.    170928 14:28:08 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.    170928 14:28:08 [Note] Plugin 'FEEDBACK' is disabled.    170928 14:28:08 [ERROR] Unknown/unsupported storage engine: InnoDB    170928 14:28:08 [ERROR] Aborting

从网上找了大半天,都说把原来的日志文件给删了就行了。but where is 日志文件?,看到上面的提示,很清楚的说之前已经有文件了,顺着网站进去,发现也没有提供怎样删除。

后来,在一篇文章中讲到,删除日志文件的方法,看到他是在mysql目录下找到的,顺着这个思路找到我的mysql目录在/var/lib/mysql下,赶紧执行命令ls,发正是在它下面有日志文件 ,然后执行操作:

[root@tserver mysql]# rm ibdata1  ib_logfile0  ib_logfile1     rm: remove regular file `ibdata1'? yes          rm: remove regular file `ib_logfile0'? yes    rm: remove regular file `ib_logfile1'? yes

重启MariaDB服务就行了。

本来是Centos 7.3的系统 启动MariaDB的方式应该是

systemctl start mariadb #启动服务

但是现在就变成这样的启动方式:

service mysql start

不知道何解。。。。。。。。。。。

下一步继续执行命令

mysql_secure_installation

这一步我在输入密码的时候还是原来的密码,输入密码一直Y就ok了。

  • 配置集群的时候发现没有wserp.cnf 在其他电脑上复制后无法识别,是因为没有权限,执行一下命令:

    chmod 777 /etc/my.cnf.d/wsrep.cnf

成功识别。

参考链接:http://www.linuxidc.com/Linux/2014-05/102229.htm

转载于:https://www.cnblogs.com/esileme/p/7606711.html

你可能感兴趣的文章
【bzoj 2208】[Jsoi2010]连通数(dfs||Tarjan算法+拓扑序+dp)
查看>>
iis 隐藏 banner
查看>>
leetcode[18]4Sum
查看>>
Java ThreadLocal的使用
查看>>
为什么数据库ID不能作为URL中的标识符
查看>>
Mybatis 3.3.0 Log4j配置
查看>>
在编辑MYSQL ODBC属性的时候提示 Invalid attribute string 解决方案
查看>>
java通过poi包导入Excel
查看>>
@classmethod装饰器
查看>>
JavaScript打开窗口与关闭页面操作大全
查看>>
java 接口参数
查看>>
DP:Skiing(POJ 1088)
查看>>
kudu
查看>>
C++ 输入cin 和输出cout
查看>>
算术运算符
查看>>
jquery中prop()方法和attr()方法的区别
查看>>
如何得到WAV文件播放的总时间
查看>>
移动端页面兼容性问题解决方案整理(三)
查看>>
c语言以二进制的方式向文件读写一组数据
查看>>
Spring定时器,定时执行(quartz)
查看>>