MySQLエラー:Another MySQL daemon already running with the same unix socket

エラーメッセージ:
Another MySQL daemon already running with the same unix socket.
原因:
複数のMySQLプロセスが同じソケットを使用する理由
解決対策:
1.shutdown -h now

2.mysql.sockをリネームする
mysqlが起動

3.海外記事:
To prevent the problem from occurring, you must perform a graceful shutdown of the server from the command line rather than powering off the server.

# shutdown -h now
This will stop the running services before powering down the machine.

Based on Centos, an additional method for getting it back up again when you run into this problem is to move mysql.sock:

# mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak

# service mysqld start
Restarting the service creates a new entry called mqsql.sock

 

DataBase

Posted by arkgame