On Sat, 2008-02-16 at 12:34 -0800, msoulier wrote:
> I have a site where I need to use the mysql tcp port of 3306 instead
> of the unix domain socket, to talk to mysql. So, I did this in my
> settings.py
> 
> DATABASE_HOST = 'localhost'
> DATABASE_PORT = 3306
> 
> Unfortunately, it seems to be ignored.

Welcome to the always interesting world of strange MySQL decisions. This
isn't a Django problem, it's normal MySQL client library behaviour. When
the host is "localhost", it will never use TCP/IP, only Unix sockets.
Even though localhost is a perfectly valid domain name.

Instead, you need to use 127.0.0.1 to force the connection to go via
TCP/IP. I'm pretty sure, without having tested it, that Django will be
fine with that (setting the HOST string to an IP address). We just pass
that information straight through to the MySQLdb python wrapper, so
whatever it accepts, we accept.

Malcolm

-- 
Success always occurs in private and failure in full view. 
http://www.pointy-stick.com/blog/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to