Manager of pid-file quit without updating fi

Error : Manager of pid-file quit without updating fi
Solution : When try to restart the mysql service on the server then above error is generated.
This problem is occurred due the “mysql ” database crashed and should be repaired but the mysql is already stopped on the server  so you need to use the following command to repair and optimize the database when mysql service is down on the server.
For Repair “mysql ” database
# find /var/lib/mysql/mysql  -name '*.MYI' -exec myisamchk -r {} \;
For Optimize the database
# find /var/lib/mysql -name '*.MYI' -exec myisamchk -o {} \;
Then
# ps -ef | grep mysql
# killall -KILL mysql
# /etc/init.d/mysql stop
# /etc/init.d/mysql start
Done

8 Thoughts to “Manager of pid-file quit without updating fi”

  1. Thanks, it’s usefully for me.

  2. This is goog info as for me. Author – respect!

  3. Bala

    This tutorial helped me recover MySQL databases under cPanel server. Thank you very much!

    1. Hello Bala, Thanks for comments.

  4. Hermelinda

    hello there and thank you for your information – I have definitely picked up anything
    new from right here. I did however expertise a few technical points
    using this site, since I experienced to reload the website a lot
    of times previous to I could get it to load properly. I had been wondering if your
    hosting is OK? Not that I am complaining, but slow
    loading instances times will often affect your placement in google and
    could damage your quality score if ads and marketing with Adwords.
    Well I’m adding this RSS to my e-mail and can look out for a lot more of your respective fascinating content. Ensure that you update this again very soon.

    1. Thanks for the update, I have optimized my site and made some necessary changes on the server.
      Please try to access the site and if any problem then update me .

Leave a Comment