LoginSignup
7
8

More than 5 years have passed since last update.

MySQL が 'The server quit without updating PID file 'というエラーを出したときの対処法

Last updated at Posted at 2015-04-29

おそらくpermissionsの問題(らしい)。(発生条件わかる方いたら教えてください。)何度か無駄に時間取られたので備忘録としてメモ。

mysqlインスタンスが現状走ってないか確認

ps -ef | grep mysql

もし走っているインスタンスが止める/消す

  483  8357 1

こんな感じで数字が左端でてくると思うので、二つ目のPID(ここでは8357)を

kill -9 8357

みたいな感じで消す。

すると、

mysql.server start

でいつも通りスタートできる。

7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8