How to download Jira through the Command Line

Still need help?

The Atlassian Community is here for you.

Ask the community


Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Purpose

Jira can be downloaded from this URL.

Sometimes, though, it is necessary to be able to download the Atlassian products via command line to allow for an easier installation when there isn't a GUI Desktop available or to automate installation/upgrade processes. In this article, we'll address how you can achieve that.

Solution

To download the application through the command line you may use either of the commands below while replacing the URL to match the specific version that you'd like to download.
Note: When writing up the command change the x.x.x value by the specific version that you'd like to download.

For example: The url used in the examples below https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-x.x.x-x64.bin  would need to be rewritten as https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-9.11.3-x64.bin to download Jira Software 9.11.3.

Linux:

curl -L -O https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-x.x.x-x64.bin 
wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-x.x.x-x64.bin 

Windows(PowerShell):

Invoke-WebRequest -Uri "https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-x.x.x-x64.exe " -OutFile "C:\path\file\jira.exe"

For the PowerShell command, be sure to name the downloaded file with the same file extension as the archive you are downloading.

For Jira versions 7.0.0 and higher:

For Jira versions prior to 7.0.0:


In case you need to also download other Atlassian products, you may use the following URLs:

Last modified on Nov 20, 2023

Was this helpful?

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