On Wed, 15 Oct 2008 15:44:02 +0100
"nesrine nesrine" <[EMAIL PROTECTED]> wrote:

> I fix an ordianary user with password, but I have the same error.
> I think that this problem is from file configure  "pg_hda.conf", but
> I not find tutorial witch has instruction  about change in this file.
> 
> think very much for your helps.
> 

Make sure you have these lines in pg_hba.conf:

  host    all         all         127.0.0.1/32          password
  host    all         all         ::1/128               password

After reloading PostgreSQL, you can test it by running this command:

  psql -h localhost <database> <username>

where <database> is the name of the database and <username> is the PG
user you made. If everything worked okay, it should ask for the password
and then give you a SQL prompt. Then try with your SQLA program.

-Kyle

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

Reply via email to