FastCgi / PostgreSQL: FATAL: Ident authentication failed for user "user_name"

From: "binberati" <binberati(at)gmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: FastCgi / PostgreSQL: FATAL: Ident authentication failed for user "user_name"
Date: 2006-10-18 02:35:17
Message-ID: 1161138917.877386.269390@f16g2000cwb.googlegroups.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi,

I have a strange problem running Django on a GrokThis.net shared
hosting account:

Environment:
------------------------------------------------------
Apache/2.0.59 (Unix)
mod_fastcgi/2.4.2
PostgreSQL 8.1.3
------------------------------------------------------

settings.py:
------------------------------------------------------
DATABASE_ENGINE = 'postgresql'
DATABASE_USER = 'user_name'
DATABASE_PASSWORD = '***'
------------------------------------------------------
or
------------------------------------------------------
DATABASE_ENGINE = 'postgresql_psycopg2'
DATABASE_USER = 'user_name'
DATABASE_PASSWORD = '***'
------------------------------------------------------

Django on FastCgi renders this error:
------------------------------------------------------
Traceback (most recent call last):
File "/home/shared/user_name/django_src/django/template/__init__.py" in
render_node
706. result = node.render(context)
File "/home/shared/user_name/django_src/django/template/__init__.py" in
render
757. return self.encode_output(output) File
"/home/shared/user_name/django_src/django/template/__init__.py" in
encode_output
739. return str(output)
File "/home/shared/user_name/django_src/django/db/models/query.py" in
__repr__
97. return repr(self._get_data())
File "/home/shared/user_name/django_src/django/db/models/query.py" in
_get_data
430. self._result_cache = list(self.iterator()) File
"/home/shared/user_name/django_src/django/db/models/query.py" in
iterator
170. cursor = connection.cursor()
File
"/home/shared/user_name/django_src/django/db/backends/postgresql/base.py"
in cursor
43. self.connection = Database.connect(conn_string)

OperationalError at /
FATAL: Ident authentication failed for user "user_name"
------------------------------------------------------

Surprisingly, I can succesfully connect to the db using either:

- psql - PostgreSQL interactive terminal
- django-admin.py shell
- django-admin.py dbshell
- django development server
- Navicat PostgreSQL from my own pc using ssh-tunnel

The only circumstance in which I cannot seem to connect to the db is
using the FastCgi instance, although it is configured to use the same
settings file as above...

[1] Can anybody shed a light on the difference between the FastCgi
context and the ones mentioned above? I suspect it must have something
to do with pg_hba.conf... but I can't see the difference between the
contexts.

[2] How do I resolve this issue? :)

Thanks very much in advance!

Best regards,
bin

Browse pgsql-admin by date

  From Date Subject
Next Message Thusitha Kodikara 2006-10-18 08:06:06 Finding current SQL activity
Previous Message Tom Lane 2006-10-17 13:37:33 Re: Missing Earth Distance Functions Under Debian