DEV Community

Arun Kumar Singh
Arun Kumar Singh

Posted on

Activation Failure / 504 Gateway Timeout in Atlassian Jira

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
Enter fullscreen mode Exit fullscreen mode

or Login in application and follow the steps below :-

  1. From the top navigation bar in your application, choose > Add-ons or Manage apps
  2. Click the Settings link at the bottom of the page.
  3. Uncheck the Connect to the Atlassian Marketplace checkbox. This option is enabled by default.
  4. 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)