Hi'
I have JIRA server on my site.
the connection is not LDAP.
i want to export all the gruop list.
i have mysql ver- 6.0
Thank you.
There's no easy way to get the group list out of JIRA. (Well, for a short list of groups, copy and paste it out of the group maintenance screen)
For a longer list, reading the database out to a text file probably is quicker and easier. But NEVER write to a JIRA database. Only read.
For the group list - select * from cwd_group
The next logical question I can sense coming is "who is in groups" - select * from cwd_membership for that one.
Just figured this out after putting together a few separate posts. This was done in a postgres db and Jira Server.
Through using the API you can get project role information for groups
"/rest/api/2/project/{Project Key/ID}/role/{Role ID}"
Doing that shows you the type for groups in projects, which is:
"atlassian-group-role-actor"
"id":12345,"displayName":"Group Name","type":"atlassian-group-role-actor","name":"Group Name"
This can be leveraged in the database doing a query of the "ProjectRoleActor" table that shows information on what users and groups exist in each project role. Since we want just the groups, the following query will work:
select * from projectroleactor where roletype='atlassian-group-role-actor'
If you want to export to CSV, add a few details:
copy (select * from projectroleactor where roletype='atlassian-group-role-actor') to '/output path/jiragroups.csv' with csv;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You can use the Group export for Jira app: https://marketplace.atlassian.com/apps/1222388/group-export-for-jira?hosting=server&tab=overview
Regards
Lasse Langhorn
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.