I tried to use WordPress, and it would never work. I have apache and mysql running, the accounts and database are all set up, there are no typos. So I tried to make a simple connection:

<?php
    $conn = mysql_connect('localhost', 'USER', 'PASSWORD');
    if(!$conn) {
        echo 'Error: ' . mysql_errno() . ' - ' . mysql_error();
    }
?>

And I always get this:

Error: 2002 - No such file or directory

What file or directory?? Any idea what might be causing this? Thanks.

Also, I'm on a mac, Snow Leopard, with built in apache and the x86_64 dmg installer of MySQL.

UPDATE: Ok, I found that the socket is at /tmp/mysql.sock, so In php.ini, I replaced all occurrences of the wrong path with that. I'll see if it works now.

link|improve this question

2  
please paste the output of /etc/init.d/mysql start if you're on a debian base distro. if failed, check /etc/my.cnf file for the correct mysql socket file path. – Sepehr Lajevardi Nov 4 '09 at 21:34
feedback

5 Answers

up vote 18 down vote accepted

If you use Linux: the path to the mysql.sock file is wrong. This is usually because you are using (LAMPP) XAMPP and it isn't in /tmp/mysql.sock

Open the php.ini file and find this line:

mysql.default_socket

And make it

mysql.default_socket = /path/to/mysql.sock
link|improve this answer
if you're not sure , try /var/lib/mysql/mysql.sock as the new path to the socket. – Jay Nov 4 '09 at 21:36
WordPress works now! I actually remember going through a tutorial saying to do this, but read somewhere that you don't need to on Snow Leopard or something like that. – Mk12 Nov 4 '09 at 21:44
1  
Hmm. Maybe they meant Leopard or Tiger. In any case, have fun with WordPress! – Alec Gorge Nov 4 '09 at 21:47
1  
Note you may need to set mysqli.default_socket = /path/to/mysql.sock if connecting with mysqli – razzed Dec 13 '11 at 19:39
Solved my issue. Thanks! Other issue was I thought my php.ini file was in /etc/php.ini but it was actually /usr/local/lib/php.ini (On Mac OS X with PHP 5.4 installed from source.) – Mauvis Ledford Apr 11 at 3:52
feedback

I'd check your php.ini file and verify the mysql.default_socket is set correctly and also verify that your mysqld is correctly configured with a socket file it can access. Typical default is "/tmp/mysql.sock".

link|improve this answer
Ok, It says /var/mysql/mysql.sock, but that path doesn't exist. – Mk12 Nov 4 '09 at 21:38
feedback

Not that it helps you much, but in the recent versions (and even less recent) of MySQL, error code 2002 means “Can't connect to local MySQL server through socket [name-of-socket]”, so that might tell you a bit more.

link|improve this answer
feedback

I had a similar problem and was able to solve it by addressing my mysql with 127.0.0.1 instead of localhost.

This probably means I've got something wrong in my hosts setup, but this quick fix get's me going for right now.

link|improve this answer
This did the trick for me! – Fredrik Wallenius Sep 20 '11 at 8:51
feedback

First, ensure MySQL is running. Command: mysqld start

If you still cannot connect then: What does your /etc/my.cnf look like?

The other 2 posts are correct in that you need to check your socket because 2002 is a socket error.

A great tutorial on setting up LAMP is: http://library.linode.com/lamp-guides/centos-5.3/index-print

link|improve this answer
The installer didn't put a my.cnf file, however there is a /usr/local/mysql/mysql-test/include/default_my.cnf, should I copy that as my.cnf to /etc ? – Mk12 Nov 4 '09 at 21:36
yes, but you may find that you need to modify it some latter. – Todd Moses Nov 5 '09 at 13:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.