I'm converting postgres to Exasol, gonna run some time trials on supposedly a super-fast DB. Exasol has an import script which I'm using and getting a "Connection refused error". This is for a local connection, Windows 10 and postgres 9.4
Things I've double-checked:
- port is 5432 (visible from PGAdmin)
- postgres is active and listening on 5432 (got the PID and saw it running)
- username and password have been retyped a few times
- tried specifying both IPV4 and 6 addresses ("localhost", 127.0.0.1 and [::1] )
- postgres is accepting TCP traffic ("pg_hba" has:
host all all 127.0.0.1/128 md5
host all all ::1/128 md5
Here is the error msg: [43000] "JDBC-Client-Error: Connecting to 'jdbc:postgresql://127.0.0.1:5432/tom_db' as user='postgres' failed [Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.]"
Any ideas? Not sure what to check next...