Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Showing more number of licensed users than actual

Venkata_Guntuku February 15, 2019

Hi, I am trying to get the user details who are consuming the jira license. When looking at the screen shot 1, it shows 1062 users , but when clicking on it, it's showing 1078 users? any one know why?screenshot_1.PNG

1 answer

0 votes
Tom Lister
Community Champion
February 17, 2019

Hi @Venkata_Guntuku 

the number that matters is the 1065 on the Jira Software license line.

the other figures are group memberships.

Does your ldap setting have a default group set. I usually set that empty to retain control of user licences .

Venkata_Guntuku February 17, 2019

@Tom ListerThanks for replying to the post. We do not have LDAP connection instead we have crowd server from where the users will be authenticated from. By the way, I wanted to get the list of user's names and email addresses  who are actually consuming licenses. Is there any query , we are using MySQL.

Tom Lister
Community Champion
February 18, 2019

Hi 

try this for users and groups

SELECT 
cwd_user.id,
cwd_user.user_name,
cwd_user.email_address,
cwd_user.active,
cwd_directory.directory_name,
cwd_group.group_name,
cwd_group.active
FROM
cwd_user,
cwd_group,
cwd_membership,
cwd_directory
WHERE
cwd_user.directory_id = cwd_directory.id AND
cwd_user.id = cwd_membership.id AND
cwd_membership.parent_id = cwd_group.id;
Venkata_Guntuku February 18, 2019

No, that did not work. It just gave 232 users details.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events