アプリケーションリンクのURLを更新する方法

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問


There are times where 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 value http://localhost:8090/confluence for propertyvalue.

     

    データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。


    (info) 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.

最終更新日: 2023 年 12 月 26 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.