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