티스토리 뷰

우분투에서 mysql-server 를 설치 후


Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)


에러가 뜰 때가 있다.



이를 해결하기 위해서는


sudo touch /var/run/utmp
sudo chmod 664 /var/run/utmp
sudo reboot


재부팅 후


sudo apt-get purge mysql-server
sudo apt-get update
sudo apt-get install mysql-server 


를 하면 정상적으로 실행이 된다.


댓글