How to identify the minimum version of JIRA Server required when migrating from JIRA Cloud

Still need help?

The Atlassian Community is here for you.

Ask the community

Purpose

When migrating from JIRA Cloud to JIRA Server the best version to migrate to is the most recent JIRA Server version, available from https://www.atlassian.com/software/jira/download/. If you're not able to use the latest version for some reason you can use the following workaround to identify what the minimum required version of JIRA Server is when migrating from JIRA Cloud to JIRA Server.

Solution

  • Take a backup of your JIRA Cloud instance and download the zip file - it's not necessary toback up the attachments or other files at this stage.
  • Unzip entities.xml from your backup file.
  • Search through the entities.xmlfile for jira.downgrade.minimum.version. On a linux system you can use the following grep command:

    grep jira.downgrade.minimum.version entities.xml
  • The result similar of the following is shown:

    <OSPropertyEntry id="14" entityName="jira.properties" entityId="1" propertyKey="jira.downgrade.minimum.version" type="5"/>
  • Based on the above result, now grep the OSPropertyString of the same id (the example return id="14")

    grep '<OSPropertyString id="14"' entities.xml
  • Result similar of the following will be returned

    <OSPropertyString id="14" value="7.1.9"/>
  • This indicates you need JIRA Server 7.1.9 to downgrade from this version of JIRA Cloud. You can download older versions from https://www.atlassian.com/software/jira/update.

  • Please note: this version can change at any time, and we are not able to lock your JIRA Cloud instance to a specific version of JIRA Server.

 

Last modified on Nov 1, 2018

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.