Hi, folks,
I'm trying to write a script that upgrade Atlassian products automatically.
How can I retrieve the latest release version programatically?
I hope Atlassian had jira-latestrelease.tar.gz points to the latest one always, so I can use wget
wget http://www.atlassian.com/software/jira/download/latestbuild.tar.gz
Is there any suggestion?
Thank you in advance.
It's more complex than that.
The download pages do some basic operating system detection and highlight the most appropriate download for you based on that. Grabbing it via wget will get you different results.
Also, they do not do "latest", they keep the version numbers, so you'll need to write a simple "find out what latest version is available".
Most importantly though, what you're proposing here is a potential nightmare. One does not simply "upgrade Atlassian products automatically". Sometimes, the process can be a simple stop/download/start. Most of the time, it is not.
I've been using JIRA at least 5 years from now, as well as Confluence, Stash and Fisheye. So far, I never had problem with "Stop/Change/Start" procedure. Simply, it was painful to copy and paste links from web browser. This is detail procedure what I do. 1. Go to www.atlassian.com/software/{jira,confluence,stash,fisheye}/download 2. Get tar.gz 3. Open terminal 4. wget tar.gz 5. inflate tar.gz 6. chown -R installation-dirs 7. stop service 8. remove old symlink 9. create new symlink to inflated dirs from above. 10. start service. For the last 3 or 5 years while upgrading every minor and major versions, I never had any other problem with this procedure. I'm very curious that what your problem for the most of the time was.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've seen all sorts of problems with this approach. Over the last 10 years, almost every job I've had has been based on "please clean up the mess made by an attempt at a quick upgrade" or "please clean up the mess made by having too many admins". The errors are legion. Now, with more recent versions, Atlassian are getting there. Point releases can be ok. Fisheye and Stash are usually ok with an automatic update. But Jira and Confluence major versions - I've never seen an upgrade that has "just worked", unless they were totally clean systems (no addons, no hacks or tweaks)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might also have a look at this: https://answers.atlassian.com/questions/205705
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.