Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I move a Bugzilla installation from one machine to another?

Bugzilla installation Machine
0
Posted

How do I move a Bugzilla installation from one machine to another?

0

Reference your database vendor’s documentation for information on backing up and restoring your Bugzilla database on to a different server. Vendor documentation for backing up a MySQL database can be found at http://dev.mysql.com/doc/mysql/en/mysqldump.html. PostgreSQL backup documentation can be found at http://www.postgresql.org/docs/8.0/static/backup.html. On your new machine, follow the instructions found in Chapter 2 as far as setting up the physical environment of the new machine with perl, webserver, modules, etc. Having done that, you can either: copy your entire Bugzilla directory from the old machine to a new one (if you want to keep your existing code and modifications), or download a newer version (if you are planning to upgrade at the same time). Even if you are upgrading to clean code, you will still want to bring over the localconfig file, and the data directory from the old machine, as they contain configuration information that you probably won’t want to re-create.

0

Use mysqldump to make a backup of the bugs database. For a typical Bugzilla setup, such a command might look like this: /usr/bin/mysqldump -u(username) -p(password) –database bugs > bugzilla-backup.txt See the mysqldump documentation for more information on using the tool, including how to restore your copy onto the destination machine.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123