Installation Guide: bug tracker
Step-by-Step Installation of Bugzilla (Bug Tracker) on Ubuntu:
1. Update system:
sudo apt update && sudo apt upgrade -y
2. Install dependencies:
sudo apt install apache2 mysql-server libapache2-mod-perl2 libdatetime-perl libdbi-perl
libdbd-mysql-perl libtemplate-perl libemail-send-perl libemail-mime-perl libemail-mime-
modifier-perl -y
3. Create database:
sudo mysql -u root -p
CREATE DATABASE bugs;
GRANT ALL ON bugs.* TO 'bugsuser'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
EXIT;
4. Download Bugzilla:
cd /var/www/html
sudo wget https://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-5.0.6.tar.gz
sudo tar -xvzf bugzilla-5.0.6.tar.gz
sudo mv bugzilla-5.0.6 bugzilla
5. Configure Bugzilla:
cd bugzilla
sudo ./checksetup.pl
sudo nano localconfig # Configure DB settings
sudo ./checksetup.pl
6. Set permissions:
sudo chown -R www-data:www-data /var/www/html/bugzilla
7. Restart Apache:
sudo systemctl restart apache2
8. Access Bugzilla at:
http://<server-ip>/bugzilla