Member of crowd-administrators Group Is Unable to See Administration Menu
プラットフォームについて: 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 は除く
問題
A Crowd administrator that belongs to 'crowd-administrators' group is unable to see Administration menu (missing cog wheel icon on the header) when logging in to Crowd.
This happens right after creating an administrator group and mapping it to the application. There's a possibility that the 'System Administrator' checkbox is accidentally ticked off during the process.
診断
Diagnostic Steps
データベースで次のクエリを実行します。
select * from cwd_app_dir_group_mapping cadgm join cwd_granted_perm cgp on cadgm.app_dir_mapping_id = cgp.app_dir_mapping_id where cadgm.group_name = 'crowd-administrators';
... if the value of 'permission_id' is 1, then proceed with the resolution. Otherwise, please contact support@atlassian.com for assistance.
原因
The System Administration flag is disabled for 'crowd-administrators' at Crowd application. At the same time, there's no other group with Admin right for Crowd application.
ソリューション
Run the following query: (change the <group_mapping_id> to the 'group_mapping' value returned in the diagnosis stage)
update cwd_granted_perm set permission_id = 2 where app_dir_mapping_id = <ID of the 'app_dir_mapping_id' where permissions need to be overwritten>;