How to retrieve from the database the last time users set their password in Jira Data Center

プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム

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

*Fisheye および Crucible は除く

要約

In Jira Data Center, you can find when users last changed their password by querying Jira's database.

ソリューション

The easiest way to get information for users in Jira that have set their password is from the cwd_user_attributes table.

You can run the following SQL query against Jira's database to retrieve details for all users:

SELECT cu.user_name, cua.attribute_name, to_timestamp(CAST(cua.attribute_value as bigint)/1000) as "passwordLastChanged" FROM cwd_user_attributes cua INNER JOIN cwd_user cu ON cua.user_id = cu.id WHERE cua.attribute_name = 'passwordLastChanged';
更新日時: April 21, 2026

さらにヘルプが必要ですか?

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