Update the URL for an application link
Platform Notice: Data Center - This article applies to Atlassian products on the Data Center platform.
Note that this knowledge base article was created for the Data Center version of the product. Data Center knowledge base articles for non-Data Center-specific features may also work for Server versions of the product, however they have not been tested. 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
Problem
There are times when you'll need to update an Application Link in Jira to use a different Application URL and Display URL without re-creating that link.
Generally speaking, you should not need to re-create the application links unless a specific problem prevents you from using the application links interface.
Resolution
Preferentially, use the UI to edit the application link. Specific instructions are available on the application links documentation page: Link Atlassian applications to work together
If you have issues editing the link on the UI, you have two alternatives:
- You can remove and re-create all of them; Or
You can edit them through the database.
SELECT PS.id, PS.propertyvalue, PE.propertytype, PE.property_key FROM propertystring AS PS INNER JOIN propertyentry AS PE ON PS.id = PE.id WHERE PS.propertyvalue LIKE '%<Insert your remote application url here>%' AND PE.property_key LIKE '%app%';
For example, your remote application's url is :
http://localhost:8090/confluence
, then insert the valuehttp://localhost:8090/confluence
for propertyvalue.Always back up your data before performing any modifications to the database. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.
Please be sure to take a backup of your database before making any changes. We strongly recommend to try these changes in a staging environment before applying them in production.