|
You should check that mysqld is running first of all. If it is, check to see that it's looking for the correct UNIX socket. # netstat -f unix |grep mysql x65b33c0 stream 0 0 e5477840 0 0 0 /tmp/mysql.sock On Linux is would look something like: # netstat -ax |grep mysql unix 2 [ ACC ] STREAM LISTENING 362783486 /var/lib/mysql/mysql.sock If you have one and an application is looking for the other, make a symbolic link (ln -s) from the one you see to the one it wants. |