Unable to login JIRA after Restoring from Backup

お困りですか?

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

コミュニティに質問

プラットフォームについて: 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 は除く

問題

After restoring JIRA into a new instance user is unable to login

The following appears in the atlassian-jira.log

2015-09-30 23:11:58,628 http-bio-8617-exec-20 ERROR anonymous 1389x36x1 - 127.0.0.1 /rest/gadget/1.0/login [crowd.manager.application.ApplicationServiceGeneric] Directory 'Delegated LDAP Authentication in BASF' is not functional during authentication of 'XXXXXX'. Skipped.

原因

The JIRA Internal Directory's order is not configured as the first or on top. Therefore , JIRA is looking for the user from the external directory

ソリューション

Manually manipulate the database to re-order JIRA internal directory to be on top by running this SQL Queries :

  1. Run this query to check the correct Directory IDs

    select id,directory_name,directory_position from cwd_directory;
  2. If the JIRA Internal Directory's id is 1 ( default ) , run this query to change the directory_position to 0 ( first )

    update cwd_directory set directory_position=0 where id=1
  3. Check to see if there are any other directories using the directory_position=0

    select id,directory_name,directory_position from cwd_directory where directory_position=0;
  4. If there are, any other ID besides the JIRA Internal Directory having the directory_position= 0, then update it to another number using step 2 but replacing id=1 with the appropriate id.


アトラシアン製品全体で 500 人以上のユーザーを管理していますか?
Crowd を使用することで、スケーラブルかつ効果的な方法でユーザーを簡単に管理できます。
 ユーザーの一元管理」を参照してください。
最終更新日: 2019 年 1 月 14 日

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

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