R – Mantis to Bugzilla migration

bug-trackingbugzillamantismigration

So we have this project which uses Mantis as bug tracker tool and in the company the corporate bug tracking tool is Bugzilla. This means we will have to use Bugzilla soon.
I searched for tools that can be used to migrate from Mantis to Bugzilla and I only found this m2bz tool which seems to work for Mantis 0.17.5 and Bugzilla 2.16.3 but seems also kind of dead since 2003…

Do you guys have already try to do such a migration? The Mantis version used is 1.1.8 and the Bugzilla one is 3.0.1.

Thanks in advance!

Best Answer

You can load data with importxml.cgi, which implies that you only need to dump your existing database into the proper XML for the migration.

We usually migrate other Bugzilla installations into our big Bugzilla database with a script that copies the data from one db to another, mapping bug ids, users, etc. I tried to do much the same thing when I had to migrate JIRA stuff. It turned out to be a major PITA!

I would have been much, much better off working on how to dump JIRA in the correct XML.

The data model changed a lot between 2.16 and 3.X, so whatever m2bz tool you found probably won't do what you want.

Related Topic