Bulk change of links in jira

mliebelt August 11, 2016

One of our customers has added a lot of links to Sharepoint content in his JIRA project, and that Sharepoint instance has moved and is now available under a new URL. Is there a simple way to modify all the links from a source to a target? I know that there are tools available to script something like that, but this will not be an option for him.

1 answer

1 accepted

1 vote
Answer accepted
Jonas Andersson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 11, 2016

Simple would be oversimplifying it (hah see what i did there? wink )

  • Shutdown JIRA
  • dump the database

    mysqldump --single-transaction --routines -uUsername -pPassword --max-allowed-packet=1G jira > jira.sql
  • use linux standard tools sed to replace old vs new hostnames like:
cat jira.sql | sed 's/https:\/\/oldURL\./https:\/\/newURL\./g' | sed 's/http:\/\/oldURL\./http:\/\/newURL\./g' | sed 's/https:\/\/oldURL\//https:\/\/newURL\//g' | sed 's/http:\/\/oldURL\//http:\/\/newURL\//g' > new.jira.sql

What i do here might seem odd, but it's to make sure

http://servername/

https://servername/ 

http://servername.whatever.follows

and

https://servername.whatever.follows

All get converted to their new names (short and fully qualified, http and https)

  • import the new database back

    mysql jira -uusername -ppassword < ./new.jira.sql
  • Start JIRA again.

Suggest an answer

Log in or Sign up to answer