How to disable incremental synchronization for an external directory through the database

お困りですか?

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

コミュニティに質問

プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。

このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

The content on this page relates to direct database modifications which are not supported. Consequently, Atlassian Support cannot guarantee providing any support for it. Please be aware that this material is provided for your information only and using it is done so at your own risk. See our page on configuring user directories for reference on how to configure this through the UI.

目的

You might want to disable incremental synchronization in Confluence for an external directory. Sometimes having the Crowd SSO authenticator enabled or not having an internal administrator in place can complicate things, so this can be done through the database.

ソリューション

  • Shutdown Confluence and backup your database before making any of these changes.
  • Run the following to find the name of the external directory for which you want to disable incremental syncs:

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

  • Run the following to disable the incremental synchronization:

    update cwd_directory_attribute 
    set attribute_value = 'false'
    where attribute_name = 'crowd.sync.incremental.enabled' 
    and directory_id = (select id 
    			from cwd_directory
    			where directory_name = 'YOUR_DIRECTORY_NAME'); 
  • Confluence を再起動します。

  • Trigger another synchronization through Confluence Admin -> General configuration -> User directories -> Your directory -> Synchronize


最終更新日: 2024 年 12 月 18 日

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

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