当前位置:首页 > 知道中心 > Linux > 文章

linux下重启mysql报错

发表于:2013-09-04| 次阅读| 作者:藕码网
TAG: Linux
摘要:linux下重启mysql报错
重启mysql报错
linux安装mysql后,在用命令service mysqld start的时候,会出现 Starting MySQL.Manager of pid-file quit without updating fi[失败]
的mysql报错--解决办法 usr/local/mysql/etc/my.cnf里的skip-federated注释掉即#skip-federated就OK了!

--skip-federated 也是mysql的一种存储引擎。在mysql 5.0.3中就被支持,在mysql 5.0.64默认编译是不开启的,在mysql5.1.29中你编译时需用--with-plugins指定,
你的编译参数中没有指定该存储引擎,而在 mysql的随带的配置文件中,该项是存在的,如果不需要,在配置文件中注释后mysql报错就不会出现了。
[root@study mysql-5.1.30]# ./configure --help|grep plugins
  --with-plugins=PLUGIN[[[,PLUGIN..]]]
                          list of plugins.
                          Available plugins are: partition daemon_example
                          Otherwise, for plugins which are not selected for
Description of plugins:
如果大家需要这种存储引擎,在linux安装mysql的时候就不妨试试用--with-plugins来指定,这样重启mysql的时候mysql报错就不会出现了。


注:本站部分信息可能源于互联网分享,如有侵权,请告知,我们将及时删除!