We have upgraded jira data center to version 9.12.14. While we were able to update all add-on's, unable to update Xporter add-on alone.
Below error i observed in logs.
ForkJoinPool.commonPool-worker-3 ERROR [c.a.j.migration.fx3.Fx3PluginClientImpl] Failed to initialize fx3Client.
com.atlassian.jira.migration.httpclient.exceptions.HttpCommunicationException: An error occurred when requesting against resource https://api.atlassian.com/flags/api/v2/frontend/featureFlagValues: api.atlassian.com: Name or service not known
But, we have also updated Jira cloud migration assistant and tried disabling it as well. It does not help.
Could someone please help with this issue?
The error message api.atlassian.com: Name or service not known
indicates a DNS resolution problem. Your Jira server is unable to resolve the hostname api.atlassian.com
. This prevents Xporter (and potentially other add-ons relying on Atlassian cloud services) from functioning correctly. While the error mentions feature flags, the root cause is the DNS failure.
Here's a breakdown of troubleshooting steps:
ping api.atlassian.com
. If you get a "request timed out" or "unknown host" error, the server can't reach Atlassian's servers.api.atlassian.com
on port 443 (HTTPS).$JIRA_HOME/server.xml
file (or the equivalent configuration location for your application server) for proxy settings.nslookup api.atlassian.com
to see which DNS server is being used and if it's resolving the hostname correctly. Try a different DNS server (e.g., 8.8.8.8 or 1.1.1.1) temporarily to see if that resolves the issue./etc/hosts
file (or the Windows equivalent) on the Jira server. Make sure there isn't an incorrect entry for api.atlassian.com
that's overriding DNS resolution.plugins
within your Jira home directory.Example Proxy Configuration in server.xml
(Tomcat):
<Connector ...
proxyName="your.proxy.server"
proxyPort="your.proxy.port"
... />
Key Takeaway: Focus on resolving the DNS issue first. The error message is clearly indicating a network problem, not a problem with the add-on itself (unless there's a very specific bug related to DNS handling within Xporter, which is less likely). Once the server can resolve api.atlassian.com
, the Xporter update should proceed without issues.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.