Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To move data from one Jira instance to another instance, Jira Command Line Interface (CLI) provides the restoreExport action. Use the action to import data into the new instance that has been exported from an old Jira instance. This article explains how to achieve this use case.

Instructions

  1. Use the exportSite action to export the complete site in the source instance into a backup zip file as shown:

    Code Block
    themeMidnight
    --action exportSite --file "exportSite.zip"


    The exported backup file is stored in the /home/export directory path of the source instance.
  2. Move this backup file to the /home/import folder path of the target instance.
  3. Restore the backup or import the zip file from the Jira home/import directory with the restoreExport action as shown:

    Code Block
    themeMidnight
    --action restoreExport --file "exportSite.zip"


...