Users In Crowd Are Not Mapped To Groups Correctly From LDAP Server
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
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.
*Except Fisheye and Crucible
Problem
Users in Crowd are mapped correctly to Groups in the LDAP server in the User Directory but are no longer mapped to Groups in Crowd.
Diagnosis
Environment
- Crowd is set up with a CONNECTOR LDAP Directory
- Crowd is using local Groups
Diagnostic Steps
Identify the Directory affected
SELECT id, directory_name FROM cwd_directory;
Find the Users in
cwd_user
affected (replace<directory_id>
with theid
from above).SELECT id AS user_id, user_name FROM cwd_user WHERE lower_user_name IN (SELECT DISTINCT(lower_child_name) FROM cwd_membership WHERE child_id NOT IN (SELECT id FROM cwd_user) AND directory_id = <directory_id>);
Find the same Users in
cwd_membership
.SELECT child_id AS user_id, parent_name as group_name, child_name as user_name FROM cwd_membership WHERE child_id NOT IN (SELECT id FROM cwd_user) AND directory_id = <directory_id>;
For the rows that are returned, confirm that the same
user_name
has differentuser_id
betweencwd_user
andcwd_mapping
.
Cause
The user_id
between cwd_user
and cwd_membership
do not match for the same user_name
.
Resolution
Always back up your data before performing any modifications to the database. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.
- Shutdown Crowd and other Atlassian Applications that depend on Crowd
For each
user_name
identified above in both queries, update thecwd_membership
table in Crowd withUPDATE cwd_membership SET child_id = (SELECT id FROM cwd_user WHERE lower_user_name = '<user_name>') where lower_child_name = '<user_name>'
Restart Crowd and wait for the full sync to complete
- Restart the other Atlassian Applications