My confluence systems states I have 101 liscensed users. I only have 86 users who are actually active and 73 users with the can use global permission set. I do have 18 disabled users, but they are not in groups. What is wrong? This is very very very confusing and impacting my community
Hi Paul,
Confluence calculates the license by counting active users that have CAN USE permission, bellow you have some queries that may help you to understand which user is counting towards the license:
select distinct u.user_name, count(*) as "Number of groups with can-use that this user is member" from cwd_user u join cwd_membership m on u.id=m.child_user_id join cwd_group g on m.parent_id=g.id join cwd_directory d on d.id=g.directory_id where g.group_name in (SELECT PERMGROUPNAME FROM SPACEPERMISSIONS WHERE PERMTYPE = 'USECONFLUENCE') AND u.active = 'T' group by u.user_name;
select u.id, u.user_name, g.group_name, d.directory_name from cwd_user u join cwd_membership m on u.id=m.child_user_id join cwd_group g on m.parent_id=g.id join cwd_directory d on d.id=g.directory_id where g.group_name in (SELECT PERMGROUPNAME FROM SPACEPERMISSIONS WHERE PERMTYPE = 'USECONFLUENCE') AND u.active = 'T';
select u.id, u.user_name, g.group_name, d.directory_name from cwd_user u join cwd_membership m on u.id=m.child_user_id join cwd_group g on m.parent_id=g.id join cwd_directory d on d.id=g.directory_id where g.group_name in (SELECT PERMGROUPNAME FROM SPACEPERMISSIONS WHERE PERMTYPE IN ('ADMINISTRATECONFLUENCE','SYSTEMADMINISTRATOR')) AND u.active = 'T';
I hope this helps
Cheers
But where do I remove the 'Can use' permission? I have deactivated some users and removed them from any group. But they are still counted against the licenced users.
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.