linux下mysql ERROR! MySQL manager or server PID file could not be found!

来源:互联网 发布:淘宝宝贝无法上架 编辑:程序博客网 时间:2024/06/10 11:48

今天遇到mysql启动失败的错误,错误如下:

<pre name="code" class="plain">ERROR! MySQL manager or server PID file could not be found!Starting MySQL. ERROR! Manager of pid-file quit without updating file.update finsh

尼玛啊,一开始不知所措了,要是win下的错误无非就这么几种...


无效的解决方法:


<pre name="code" class="plain">#ps aux |grep mysq*  ——查看卡死的进程  
#kill -s  xxx



尼玛啊,杀死了也无效!


最后:


sed -i '/skip-innodb/d' /www/etc/my.cnf
<span style="font-family: Arial, Helvetica, sans-serif;">service mysqld restart</span>



完美解决。

0 0