Update the URL for an application link
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
問題
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.
ソリューション
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.データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
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.