Is there a way to disable say 100 users (on jira) at one go, instead of going into each profile and disabling him one by one.
PS: JIRA6 has the disable user checkbox.
Can we use REST API to do bulk disabling?
Rahul
updateUser from JIRA Command Line Interface can be used in combination with one of the run actions like runFromSql, runFromCsv, or runFromList. This can be done on a live system.
The GUI has no option for doing this in a bulk operation.
The fastest way to solve this issue is:
1. Connect to your JIRA database
2. Search for table [dbo].[cwd_user]
3. Select all relevant users and set the value in column "active" to "0"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Make sure the database is shutdown when doing this operation :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, I suppose you mean that JIRA is shut down. Might be a tad difficult to change a value in a database that is not running
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Rahul,
This thread gives an overview of some (safe) options to deactivate users:
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.