Is it possible to migrate data from JIRA server which has not renewed maintenance and support?
Yes, you should still be able to export data from the server. You can use a full backup to extract everything from the system and restore it on another server, or you can export issues to csv. For the full system backup, have a look at Backing up data and Moving or archiving individual projects.
Hi @mik So to export and import few of the projects do we need to use 3rd part app Project Configurator for Jira which is recommended ?
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.
It all depends on what you want to export. Are you exporting the whole project including project configurations? Or are you looking at only exporting the issues in a project?
You can use an app to do it like Project Configurator, or you can use the built-in system export, restore it on a test server, delete the projects you do not want to migrate, do another system backup with the projects you want, and then restore that backup. In order to do the system backup you need Jira admin permissions and then go to Administration > System > Import & Export > Backup System.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I want to export few of the projects with all data which includes configurations, permissions , fields , screens settings in short everything related to respective projects so which is the best method ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, so in that case you are looking at either doing the steps I described using the system backup or using an app. It all comes down to if you want to spend the money on an app or spend your own time by setting up a test server and do the clean up there. I have done migrations in the past, but it has been mainly full migrations and not just specific projects. The only exception was when I migrated a Jira Cloud project back into our server environment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg How to remove inactive and never logged in users in JIRA server ?
I dont see that option!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can only remove users that have been created in the internal user directory. If you are using an external directory you can only deactivate a user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ya either way, I want to deactivate or remove both works for me but I’m not getting that option in Jira either to deactivate/remove!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are using an external user directory you have to deactivate the user in Active Directory/LDAP and this will then be synced in Jira. The only thing you can do in Jira is to remove them from your application group so the user cannot log in to Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried to remove them in application group but it’s giving me error saying cannot remove users from group because you have read only access from directory!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Okay, so when you use the read-only external user directory you have to make the change in that directory, you cannot make any changes to your users in Jira.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, but keep in mind that attachments are not stored in the database, so you would have to get those from the file system on the server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg Thank you so do you have any link with procedure mentioned how to take SQL back up for JIRA 7.12?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B I don't, Atlassian do not provide it but instead rely on that you follow the vendor's recommendation to do backups.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg So now we are selling one part of our organization so we going to handover our JIRA server instance 7.12 to them before handover we need to change to there new URL, so is it easy to do?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B on server the URL is not fixed or associated with your projects, it is determined by the Base URL that you set. All you have to do is have the new organization change the base URL when they import the backup. You can find the information here on how to change the base URL.
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.
@Mikael Sandberg And I tried to take xml backup in JIRA server 7.12 in web browser , when I given file name and clicked submit, its keeps on rotating and i dint get any response/error/completed!
So take take XML back up should I log in to server locally ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B the change can be made either before after, that is up to you.
The XML backup takes some time, it all depends on your instance. And don't be afraid if you get a time out error. The backup still happens, you just have to monitor the file increase on the server side in that case, and the increase of the file size increases, that is when the backup is done.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg Thank you and how to take attachments back up? XML will not include attachments in the back up so.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B the easiest way of backing up the attachments is to just zip up the data folder. Take a look at the backup section in the documentation, Migrating Jira applications to another server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg Is there any way to get active/inactive users list who worked on any projects in JIRA server 7.12?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the REST API to get the list of active/inactive users, see GET /rest/api/2/user/search. It will not tell you if the user worked on a project or not, if you are looking for users that are assigned or was assigned to an issue you can get that too by running a JQL and then parse out the assignee.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B it depends on what you want to get out of the JQL. For example, to get all issues where the assignee is set you can use assignee is not EMPTY. And you can either create a filter and access it from the REST API or run the query directly using the REST API. As mentioned above, it all depends on what you are looking for. I would start with the list of active/inactive users and go from there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you finally I listed some users to retain.
So now i need to delete some of the users in JIRA server 7.12, so is there anyway to select all and delete?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg Is there any way to export few of the projects (only selected not all ) in JIRA cloud standard platform? OR any add -on?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kotresha B yes, but with restrictions unless you use an app or using the XML backup. If you do not want to use the XML backup to do it you will not be able to get any of the project configuration in the export.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mikael Sandberg Is there any feature or tools in JIRA to get statistics and reports of administrative activities like users activities, what are all products enabled, add on's etc.
I am an JIRA admin and I want this reporting tool or feature for my administrative tasks to show or record and present to management.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kotresha B,
This question should probably be moved to a new question, but there are several apps in the marketplace that can to with for you. I know Power dashboards reports & gadgets and if I remember correctly Scriptrunner also have reports that you can run.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg Hay I want to get reports on administrative activities like users activities, billing , products enabled etc. so is there a way to get these data from any tool within JIRA or add-on?
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.