You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Getting error on setup:
db url: jdbc:postgresql://localhost:5432/confluence
Can't reach database server or port
SQLState - 08001
org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
I'm able to connect to db from linux command line.
$psql -U confluenceuser -p 5432 confluence
pg_hba.conf
#local all postgres peer
local all all md5
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 192.168.0.25/24 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local replication all peer
host replication all 127.0.0.1/32 md5
host replication all ::1/128 md5
problem was in postgresql.conf. "md5" was OK. Did not need "trust" in pg_hba.conf.
I had...
listen_addresses = '::'
Now have...
listen_addresses = 'localhost'
All ok now. Thanks.
Thank you for following up to let the Community know the resolution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
we use Azure postgres paas service , it seemed they can't change the settings for us. we don't want to change the database, any other workaround ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mike,
My theory is the authentication method has to be trust instead of md5. There are sample pg_hba.conf file entries in this article: Confluence PostgreSQL JDBC direct connection refused
I look forward to hearing whether the setup wizard can be completed with the PostgreSQL configuration recommended in the article.
Thanks,
Ann
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Community! We're thrilled to share that Team Calendars for Confluence is now a built-in feature for Confluence Data Center releases 7.11 and beyond. A long time favorite, Team Cale...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.