Another mysql daemon is already running with the same unix socket
You got the above message from server, when are trying to restart the MySql from command promt. SO, to avoid the above error and start the MySql follow the below steps -
1 - Run the command -
service mysqld stop
to stop all current mysql services on server.
2 - Now run the below command -
mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak
3 - Finally start the MySql service -
service mysqld start
its done ...its works for me and hope so will work for you.....:)
0 Comment(s)