Universal Plugin Manager hung installing add-on

お困りですか?

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

コミュニティに質問

症状

UPM is hung install a plugin and the UI appears like below in Bamboo:

 

原因

A installation record was not removed from the bandana table in Bamboo's database. You can verify this using the following database query which will return any plugin in the INSTALLING stage. 

SELECT * FROM BANDANA WHERE SERIALIZED_DATA LIKE '%INSTALLING%' AND BANDANA_KEY LIKE '%com.atlassian.upm.impl.PluginManagerPluginAsynchronous%';

Ensure Bamboo is shutdown when running query to avoid false positives. 

ソリューション

Remove the INSTALLING record from the database and attempt to reinstall the application. 

tip/resting Created with Sketch.

It's always good practice to backup the database before editing!

  1. Stop Bamboo
  2. Backup database

  3. Run query to remove record:

    DELETE FROM BANDANA WHERE SERIALIZED_DATA LIKE '%INSTALLING%' AND BANDANA_KEY LIKE '%com.atlassian.upm.impl.PluginManagerPluginAsynchronous%';
  4. Start Bamboo
  5. Reinstall Add-on


最終更新日 2018 年 11 月 14 日

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

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