LDAP と Jira 間で同期されるユーザーの合計数を調べる方法

お困りですか?

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

コミュニティに質問

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

目的

When investigating problems with user management, including slow directory sync, it can be useful to find the total number of users synchronized between LDAP and Jira.

ソリューション

Use the following queries to check the total number of users synchronized between LDAP and Jira. 

PostgreSQL, MySQL, Oracle
SELECT DISTINCT count(lower_email_address) 
AS user_count
FROM cwd_user; 
Microsoft SQL Server
SELECT DISTINCT count(lower_email_address) 
FROM [jiraschema].cwd_user; 





最終更新日: 2022 年 1 月 24 日

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

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