Hi everyone,
We have 8.20.6 version of Jira. In user picker (single user) fields, we are viewing multiple of the same user.
In addition, Jira have LDAP integration.
Thanks.
Hi @Rabia S_ ,
We had faced similar issue before and restarting with clearing cache resolved for us.
JIRA_HOME/plugins/.bundled-plugins JIRA_HOME/plugins/.osgi-plugins
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Rabia S_
I found a related ticket https://jira.atlassian.com/browse/JRASERVER-68456. See if the workaround mentioned solves your problem.
Jira >= 8.19.1: Avoid using duplicate username or manually deactivate the user in the database (set active=0) (DB: cwd_user.active)
Run below query to check if duplicate exists in DB
The below query will help you find out the list of user accounts that are using the same e-mail address between different User Directories.
SELECT cwd_directory.directory_name as "Directory Name", cwd_user.lower_user_name as "User Name", cwd_user.lower_email_address as "E-mail Address" FROM cwd_user, cwd_directory WHERE lower_email_address IN ( SELECT lower_email_address FROM cwd_user GROUP BY lower_email_address HAVING COUNT(*) > 1)
Note: This query was built to PostgreSQL and may require some changes to run in different database flavors.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira may be seeing duplicate user account entries. Here's a knowledgebase article on merging those accounts. https://confluence.atlassian.com/jirakb/merge-duplicate-ldap-user-accounts-674989047.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This solution about same user but different account. But we are seeing same user and same account.
In User Management, like this users are seeing just one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.