You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
After a routine "dnf update" on a CentOS8 machine, Jira Core v8.6.0 starts up without any errors, but refuses to serve any pages.
The end user is told "Sorry, we had some technical problems during your last operation".
The underlying Java stacktrace (summarised is as follows):
com.opensymphony.module.propertyset.PropertyImplementationException: Unable to load values for CacheKey[entityName=ApplicationUser,entityId=10083]
Caused by: com.atlassian.cache.CacheException: com.atlassian.jira.exception.DataAccessException: 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.
Caused by: com.atlassian.jira.exception.DataAccessException: 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.
Caused by: 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.
Caused by: java.net.ConnectException: Connection refused (Connection refused)
Obviously, this is telling me that the database is not accepting connections on localhost port 5432.
Except the database is accepting connections on localhost port 5432.
[jira@jira ~]$ telnet 127.0.0.1 5432
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
^]quit
telnet> quit
Connection closed.
[jira@jira ~]$ telnet ::1 5432
Trying ::1...
Connected to ::1.
Escape character is '^]'.
^]quit
telnet> quit
Connection closed.
[jira@jira ~]$ psql -d "postgresql://localhost:5432" jira
Password for user jira:
psql (10.6)
Type "help" for help.
jira=> \d
List of relations
Schema | Name | Type | Owner
--------+-------------------------------------------+----------+-------
public | AO_0201F0_KB_HELPFUL_AGGR | table | jira
public | AO_0201F0_KB_HELPFUL_AGGR_ID_seq | sequence | jira
public | AO_0201F0_KB_VIEW_AGGR | table | jira
public | AO_0201F0_KB_VIEW_AGGR_ID_seq | sequence | jira
public | AO_0201F0_STATS_EVENT | table | jira
public | AO_0201F0_STATS_EVENT_ID_seq | sequence | jira
For obvious reasons I am very stuck.
Anyone seen weirdness like this happen before?
Turned out the solution to this was more mundane - check that the reverse proxy you're connecting to points at the machine you think it's pointing at.
In this case, it was pointing at a different machine. Once I was able to connect to the correct machine, the problem was solved.
Hello @Graham Leggett ,
Few things to check:
listen_addresses
is set to localhost instead of :: in postgresql.conf, this change requires restart database and application service.You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As shown above, the database responds successfully to both IPv6 and IPv4.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.