How to reset all Confluence Data Center plugins back to their default state through the database
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
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.
*Fisheye および Crucible は除く
Prelude information
The state of a Confluence plugin is stored in the table bandana
with the bandanakey plugin.manager.state.Map.
If a plugin is in the default state, its entry will not appear in the 'plugin.manager.state.Map'.
For example, atlassian-failure-cache-plugin is enabled by default; therefore, the entry state for atlassian-failure-cache-plugin does not appear in the 'plugin.manager.state.Map' unless it is disabled. The same applies for plugins that are disabled by default.
データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
How to Change a Plugin Back to Its Default State
The following is the process for resetting a plugin back to its default state:
- Confluence を終了します。
- Backup your database in case you need to revert the changes.
- Run the following query in your database:
select BANDANAVALUE from BANDANA where BANDANAKEY = 'plugin.manager.state.Map';
- 結果は次のようになります。
<map> <entry> <string>com.atlassian.atlassian-failure-cache-plugin</string> <boolean>false</boolean> </entry> <entry> <string>confluence.extra.chart</string> <boolean>false</boolean> </entry> </map>
- Use the following SQL query to delete all non-default plugin modifications:
update BANDANA set BANDANAVALUE='<map/>' where BANDANAKEY='plugin.manager.state.Map';
- Clear Plugin Cache
- Confluence を再起動します。