While deploying Jira in Kubernetes or Docker you might have faced Activation Failure / 504 Gateway Timeout
issues while working with plugins load. There can be other root causes but most prominent one is that your Jira Universal Plugin Manager is trying to connect to Marketplace. We can disable the same in Jira to avoid these errors.
Switching UPM to offline mode in Jira
https://marketplace.atlassian.com
https://marketplace-cdn.atlassian.com
To fix that you can disable it via system property
# Set the system property upm.pac.disable to true. When this property is set to true, UPM does not try to access the Atlassian Marketplace. Example:
-Dupm.pac.disable=true
or Login in application and follow the steps below :-
- From the top navigation bar in your application, choose > Add-ons or Manage apps
- Click the Settings link at the bottom of the page.
- Uncheck the Connect to the Atlassian Marketplace checkbox. This option is enabled by default.
- Click Apply
References:
https://confluence.atlassian.com/upm/disabling-and-enabling-apps-273875716.html
https://confluence.atlassian.com/upm/problems-connecting-to-the-atlassian-marketplace-273875718.html
https://confluence.atlassian.com/upm/configuring-marketplace-connectivity-306350947.html
Top comments (0)