I have a user who left the company. I changed the reporter on his issues and closed all the issues he reported. I am still unable to delete this user because he reported issues. Is there a way to delete this user without reopening all the issues and reassigning the "reported by"? Please help.
Thanks
Really the best choice you have is to remove the user from any group or permission that he has since you are using OD version. If I remember correctly the user without the jira-user group changes to inactive and it can't be used.
If a user doesn't belong to any group or permission it doesn't count on your license.
Hope this helps!
Hi We have a self hosted instance of jira. We want to remove some users who have left the system. I am not able to delete the user because he has written some comments on issues.
Even if i make this user inactive / remove all group / permission, License count doesn't decrease.
Please suggest
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please see the accepted answer - it is still correct, despite being 6 years old, and "delete" is not going to be useful to you.
Making the user unable to log in by removing them from the user groups OR making them inactive definitely stops them counting towards the licence count. I usually do both.
Check Admin -> Manage applications to check the group access. For the disabling of users, it depends on how your user directory is being done. Is it internal?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think then the only option you have is to create a user like "deleted-user" or something like that, and assign all the issues of all the users you want to delete, and then assign those issues to this user, and then you can delete rest of the users. But I am not sure why you would want that.
If it is because of licensing factor, then as Nic suggested, just remove the user from all groups and then user should not be counted towards your license. You can just leave the user inactive.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Hope you are doing Great.
I want to remove a User who is not with our Company any more. In this case there is no Issue Reported by the User & All the Issues that were assigned to Him are Fixed Closed.
I am unable to Delete.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The advice still stands. You need to change all the assignees to someone who is going to remain in the system.
The status of the issues is utterly irrelevant - Jira needs a valid user account in reporter and assignee.
Generally though, the advice is not to delete Jira users at all. Remove them from all roles and groups, but don't delete them (it's a good idea to rename them - add "left" or "inactive" or something to their name). That way, you don't have to reassign closed issues or edit reporters, and you retain a history of their activity.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I dont' know what permissions are granted on on-demand instances, but certainly you will be able to use JQL option (the no 2), thats a standard JIRA feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And how would you do this same action in a hosted platform profile such as mine?
thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can write a simple database query to replace him as a reporter. Look at https://developer.atlassian.com/display/JIRADEV/Database+Schema for the database schema. If it is mysql, and username is a which you want to replace with b, its a simple query
update jiraissue set REPORTER='b' where REPORTER='a';
This is as simple using the UI, just do a JQL query for all isssues for that reporter, and make a bulk change. It won't reopen all the issues, and you have the option to not notify anyoen.However, your workflow must allow editing of closed issues, see https://confluence.atlassian.com/display/JIRA/Allow+editing+of+Closed+Issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am afraid, you won't be able to modify the database as you are using JIRA OnDemand. Have a look at the below links -
Restricted Functions on JIRA OnDemand
Atlassian OnDemand's Application Access
Hope this helps!
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.