Manager of pid-file quit without updating file
2012年05月19日 | 标签: Manager of pid-file quit without updating file
Today one of my clients’ VPS suffered from CC attack and I had to manually stop the web environment and then restart it.However when i tried to restart it,it alwasys said “Starting MySQL. ERROR! Manager of pid-file quit without updating file.”
Then here are the steps on how to solve it.
us ps -A command to see the process ID of mysql
it should be like this
8016 pts/2 00:00:00 mysqld_safe
8037 pts/2 00:00:00 mysqld
then kill them
kill -9 8016
lastly you can restart your MySQL and it should be no problem.
