Deploying Bugzilla

These are the steps that I followed to have a running Bugzilla:
  1. Install Ubuntu server 12.04.1 LTS and make sure it is up-to-date.
  2. Make sure the following applications are installed:
    1. apache2 server
    2. mod_perl 
    3. perl
    4. mysql server
  3. Download the bugzilla archive(tar.gz) from http://www.bugzilla.org/download/
  4. Extract the downloaded bugzilla to /var/www
  5. Execute the ./checksetup.pl --check-modules
  6. Execute the ./install-module.pl --all
  7. Create database on mysql and account
    1. create database bugzilla
    2. grant all privileges on bugzilla.* to bugzilla@localhost identified by 'bugzilla'
    3. flush privileges
  8. Modify the file localconfig and set the following:
    1. $db_user  = 'bugzilla'
    2. $db_driver = 'mysql'
    3. $db_pass = 'mysql'
    4. $webservergroup = 'www-data'
  9. Execute the ./checksetup again

Comments

Popular Posts