vote up 1 vote down star

I'm having trouble with the MySQLdb module.

db = MySQLdb.connect(
    host = 'localhost', 
    user = 'root', 
    passwd = '', 
    db = 'testdb', 
    port = 3000)

(I'm using a custom port)

the error I get is:

Error 2002: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
Which doesn't make much sense since that's the default connection set in my.conf.. it's as though it's ignoring the connection info I give.. The mysql server is definitely there:
[root@baster ~]# mysql -uroot -p -P3000
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 19
Server version: 5.0.77 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use testdb;
Database changed
mysql> 

I tried directly from the python prompt:

>>> db = MySQLdb.connect(user='root', passwd='', port=3000, host='localhost', db='pyneoform')
Traceback (most recent call last):
File "", line 1, in 
File "/usr/lib64/python2.5/site-packages/MySQLdb/__init__.py", line 74, in Connect
return Connection(*args, **kwargs)
File "/usr/lib64/python2.5/site-packages/MySQLdb/connections.py", line 169, in __init__
super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2002, "Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)")
>>>

I'm confused... :(

flag

79% accept rate

4 Answers

vote up 2 vote down check

Make sure that the mysql server is listening for tcp connections, which you can do with netstat -nlp (in *nix). This is the type of connection you are attempting to make, and db's normally don't listen on the network by default for security reasons. Also, try specifying --host=localhost when using the mysql command, this also try to connect via unix sockets unless you specify otherwise. If mysql is not configured to listen for tcp connections, the command will also fail.

Here's a relevant section from the mysql 5.1 manual on unix sockets and troubleshooting connections. Note that the error described (2002) is the same one that you are getting.

Alternatively, check to see if the module you are using has an option to connect via unix sockets (as David Suggests).

link|flag
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:3300 0.0.0.0:* LISTEN 5361/mysqld – Ian Apr 17 at 3:26
Yeah, my bad, in the examples above I wrote port 3000. I fixed that.. and strangely, the problem persists. heh. ugh. – Ian Apr 17 at 3:27
Have you restarted the server since you updated the configuration? – Dana the Sane Apr 17 at 3:27
I restarted earlier today.. but I didn't modify the server, I just updated the script to use 3300 instead of 3000 (that was a mistake in the code). – Ian Apr 17 at 3:31
I just noticed something weird.. [root@baster httpd]# mysql -uroot -p -P666 Enter password: mysql> Apparently mysql ignores my port number.. :| – Ian Apr 17 at 3:32
show 10 more comments
vote up 0 vote down

As far as I can tell, the python connector can ONLY connect to mysql through a internet socket: unix sockets (the default for the command line client) is not supported.

In the CLI client, when you say "-h localhost", it actually interprets localhost as "Oh, localhost? I'll just connect to the unix socket instead", rather than the internet localhost socket.

Ie, the mysql CLI client is doing something magical, and the Python connector is doing something "consistent, but restrictive".

Choose your poison. (Pun not intended ;) )

link|flag
vote up 0 vote down

add unix_socket='path_to_socket' where path_to_socket should be the path of the mysql socket, e.g. /var/run/mysqld/mysqld2.sock

link|flag
vote up 0 vote down

Maybe try adding the keyword parameter unix_socket = None to connect()?

link|flag
Just tried that, it doesn't like None, so I did '' instead and now it complains that '' isn't a valid socket. weird, it's like it only wants to connect via socket.. – Ian Apr 17 at 3:11

Your Answer

Get an OpenID
or

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