How to Determine which Projects in JIRA have Anonymous Access Enabled
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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
To determine which projects in JIRA have enabled anonymous access, please run the following query on the database:
1
2
3
4
5
6
7
8
9
10
select distinct(P.pname)
from nodeassociation NA
join project P on NA.source_node_id = P.id
join permissionscheme PS on NA.sink_node_id = PS.id
join schemepermissions SP on PS.id = SP.scheme
where NA.sink_node_entity = 'PermissionScheme'
AND NA.source_node_entity = 'Project'
AND SP.perm_type = 'group'
AND SP.perm_parameter IS NULL
AND SP.permission_key = 'BROWSE_PROJECTS';
Updated on April 8, 2025
Was this helpful?
Still need help?
The Atlassian Community is here for you.