The cause is Jira that connects to itself, and if you have a proxy installed, the SSL certificate must be well configured in the Java environment

selection_366

The Atlassian solution is:

And our proposed solution is:

  • Export the SSL certificate and import it in the Jira JRE security CA cert file (and in the system Java security CA cert file)
  • The proxy MUST be configured to redirect to the url (not to localhost)
  • openssl s_client -connect jira.example.com:443 < /dev/null | sed -ne ‘/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p’ > public.crt
  • keytool -import -alias jira.example.com -keystore /etc/pki/java/cacerts -file public.crt
  • keytool -import -alias jira.example.com -keystore /opt/atlassian/jira/jre/lib/security/cacerts -file public.crt

 

Thanks to Riccardo for this solution!

Post by MrAddon

Posted by:.

3 replies on “How to fix gadget titles showing as __MSG_gadget

  1. To find keytool is inside the JRE

    sudo find / -name jre
    

    To find the cacerts use:

    sudo find / -name cacerts
    

    Default password: changeit

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s