mysqld_safe Directory ‘/var/run/mysqld’ for UNIX socket file don’t exists

It seems odd that this directory was not created at install – have you manually changed the path of the socket file in the my.cfg?

Have you tried simply creating this directory yourself, and restarting the service?

mkdir -p /var/run/mysqld
chown mysql:mysql /var/run/mysqld

Leave a Comment