Quantcast
Channel: Question and Answer » postgresql
Viewing all articles
Browse latest Browse all 1138

SQLAlchemy connection error with Postgres

$
0
0

I am trying to write a basic python script that uses SQLAlchemy to connect to my Postgres database. In the connection details, if I use “LOCALHOST”, it connects fine. If I reference the server by name, it throws the following error:

OperationalError: (psycopg2.OperationalError) FATAL: no pg_hba.conf entry for host “fe80::19e5:a9a0:bcc2:1c5b%11″, user “postgres”, database “postgres”, SSL off

I checked pg_hba.conf, and here’s what I have:

# IPv4 local connections:
host    all             all             127.0.0.1/32            trust

host    all             all             0.0.0.0/0               md5
# IPv6 local connections:
host    all             all             ::1/128                 trust

host    all             all             0.0.0.0/0               md5

I am able to connect to this Postgres database using other tools, like PgAdmin from a different machine, Tableau, Talend, etc.

UPDATE: I tried instead of using the name of the machine, using it’s static ipv4 IP address, which worked. The problem has something to do with the ipv6 connection.


Viewing all articles
Browse latest Browse all 1138

Trending Articles