Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,444
Community Members
 
Community Events
184
Community Groups

Sudden Unexplained Jira Outage: PropertyImplementationException: Unable to load values for CacheKey

Edited

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?

2 answers

1 accepted

0 votes
Answer accepted

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.

0 votes
Italo Qualisoni [e-Core]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jul 17, 2020

Hello @Graham Leggett ,

Few things to check:

  • See this similar question, in this case postgresql was running using IPV6 instead of IPV4. Check if listen_addresses is set to localhost instead of :: in postgresql.conf, this change requires restart database and application service.
  • Check this kb, it's for Confluence but it can help Confluence PostgreSQL JDBC direct connection refused
  • Are you running JIRA with docker ?

As shown above, the database responds successfully to both IPv6 and IPv4.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events