欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Starting MySQL.The server quit without updating PID file (/v_MySQL

程序员文章站 2022-06-17 13:42:52
...
项目中的用户角色不知道为什么无缘无故甘丢失了,所以就决定更改一下数据库密码,但好不幸更改后,重启时报出这个异常,
Java代码 Starting MySQL.The server quit without updating PID file (/v_MySQL
  1. Starting MySQL..The server quit without updating PID file (/var/lib/mysql/localhost.localdomain.pid

于是去查看mysql日志(在/var/lib/mysql目录下有个err文件的)
Java代码 Starting MySQL.The server quit without updating PID file (/v_MySQL
  1. InnoDB: using the same InnoDB data or log files.
  2. InnoDB: Unable to lock ./ibdata1, error: 11


于是打算杀死进程再重启,lsof -i:3306,没有进程,后来上网google一翻参考了几篇文章都不能实现有些说修改my.cnf文件等等的,都没效,后来看到一篇文章说:

Java代码 Starting MySQL.The server quit without updating PID file (/v_MySQL
  1. 今天启动mysql出现了这个错误,很奇怪,按照提示,
  2. ps -ef|grep mysqld ,居然发现服务器里有一个僵尸进程mysqld,启动kill -9 进程号,
  3. 然后重新启动mysql,一切恢复正常。


于是打上ps -ef|grep mysqld,真的发现有一个进程号,kill于就能正常启动了