yyy
yyy

Reputation: 1

MySQL Server Startup error about update PID file

ERROR! The server quit without updating PID file (/usr/local/mysql/data/localhost.localdomain.pid).

Upvotes: 0

Views: 74

Answers (1)

blabla_bingo
blabla_bingo

Reputation: 2162

Remove the pid file,which by default is located at MySQL's data directory unless specified elsewhere.Make sure no instance of MySQL server is currently running :

ps -ef |grep -i mysqld

Perform a shut down if there is a running instance:

mysqladmin shutdown -uroot -p

Start again.

Upvotes: 0

Related Questions