CentOS
another mysql daemon already running with the same unix socket
berabue
2013. 12. 21. 10:15
|
service mysqld start 명령 실행 시 아래와 같은 문구가 출력되면 해결방법.
another mysql daemon already running with the same unix socket
# service mysqld stop
# mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak
# service mysqld start
|