What's your database configuration on the Apache machine?
--
-- Christophe Pettus
x...@thebuild.com
Hello, I think postgresql is not running or doesnt use the 5432 port. Check your processus.
--
Mathieu Leduc-Hamel
I'd suggest taking a look at your pg_hba.conf file. It can be finicky, so
you probably want to reference this if you haven't already:
http://www.postgresql.org/docs/8.4/static/auth-pg-hba-conf.html
-Jamie
Thanks
--
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
Either get rid of the 127.0.0.1 and 5432 as per the comments in the code
above or change listen_address="*" in postgresql.conf and restart PG.
The former will make a socket connection. You're trying to make a TCP/IP
connection to PostgreSQL as you have it above now and PG is configured
by default to only listen to localhost, not an IP address, even if that
IP address is 127.0.0.1. You'll most likely find
listen_address="localhost" on your machine right now.
--
Regards,
Clifford Ilkay
Dinamis
1419-3266 Yonge St.
Toronto, ON
Canada M4N 3P6