Can’t connect to local MySQL server through socket…

The MySQL error “Can’t connect to local MySQL server through socket ‘/var/mysql/mysql.sock’ “ fix is:

Create this directory if it does not exist…

sudo mkdir /var/mysql

Next make the following symbolic link…

sudo ln -s /private/tmp/mysql.sock /var/mysql/mysql.sock

Leave a comment