I have set up a basic transactional database using MySQL. Using python/MySQLdb, this works fine:
connection = MySQLdb.connect (host = "127.0.0.1", port = 3306, user = "root", passwd = "password", db = "test")
but this doesn't:
connection = MySQLdb.connect (host = "localhost", port = 3306, user = "root", passwd = "password", db = "test")
Using the latter generates the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "path\to\virtualenv\lib\site-packages\MySQLdb\__init__.py", line 81, in Connect
return Connection(*args, **kwargs)
File "path\to\virtualenv\lib\site-packages\MySQLdb\connections.py", line 187, in __init__
super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (10061)")
I have to admit I'm a bit confused as to why MySQLdb fails to resolve localhost. The C:\Windows\System32\drivers\etc\hosts file hasn't been modified in way. Using a regular Windows command prompt, ping localhost and telnet localhost 3306 both work fine.
Environment:
- Windows 7 (64 bits)
- Python 2.7.2 (32 bits)
- MySQLdb 1.2.3
- MySQL 5.5.28 (64 bits)