On Thu, 19 Jun 2008 02:31:43 +0200 Johannes Bauer <[EMAIL PROTECTED]> wrote: > pg.InternalError: FATAL: no pg_hba.conf entry for host > "131.188.37.153", user "sijsbaue", database "prismpp_sijsbaue", SSL off > > Meaning it completely ignores the "sslmode" argument. How is this done?
This seems to be a PostgreSQL issue rather than a PyGreSQL issue but check your pg_hba file. The message is telling you that you cannot connect from your current machine to the database server. Try doing a "psql -h host db" from the command line replacing host and db with appropriate values. You will probably get the same answer. You probably need a line like this in your pg_hba.conf file. host all all 131.188.37.153/32 trust sameuser Please see the PostgreSQL documentation and mailing lists for further information. Cheers. -- D'Arcy J.M. Cain PyGreSQL Development Group http://www.PyGreSQL.org _______________________________________________ PyGreSQL mailing list [email protected] http://mailman.vex.net/mailman/listinfo/pygresql
