[go: up one dir, main page]

0% found this document useful (0 votes)
11 views1 page

Bug Tracker Installation Ubuntu

This document provides a step-by-step installation guide for Bugzilla, a bug tracking system, on Ubuntu. It includes instructions for updating the system, installing necessary dependencies, creating a database, downloading and configuring Bugzilla, setting permissions, and restarting the Apache server. Finally, it indicates how to access Bugzilla via a web browser using the server's IP address.

Uploaded by

ysridat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Bug Tracker Installation Ubuntu

This document provides a step-by-step installation guide for Bugzilla, a bug tracking system, on Ubuntu. It includes instructions for updating the system, installing necessary dependencies, creating a database, downloading and configuring Bugzilla, setting permissions, and restarting the Apache server. Finally, it indicates how to access Bugzilla via a web browser using the server's IP address.

Uploaded by

ysridat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like