Bugzilla Installation
6.1 bugzila Installation
1) tar zxvf bugzilla-3.6.1.tar.gz
2) CD bugzilla-3.6.1
3) mV bugzilla-3.6.1/usr/local/apache2/htdocs/bugs
4) CD/usr/local/apache2/htdocs/bugs
5)./checksetup. pl-- Check-Module
6) install all required modules
6.2 create bugs Database
1) Launch the MySQL Service
# Service mysqld start
2) Enter MySQL Enviroment
# MySQL
3) Create Database bugs
# Create database bugs
3) grant select, insert, update, delete, index, alter, create, lock tables, create temporary tables, drop, references on bugs. * to bugs @ localhost identified'Bugs';
"Bugs"Is the password, you must keep the same password in localconfig for Bugzilla's configure file.
4) flush privileges;
6.3 rerun checksetup. Pl to generate localconfig File
#./Checksetup. pl
6.4 update Bugzilla configure file
# Vim localconfig
Change $ index_html = 0 to $ index_html = 1;
Change $ db_pass = ''; to $ db_pass = 'bugs '; ***** the password is set in MySQL *******
Change $Webservergroup= "" To $ webservergroup ='Daemon'; ***** The same group in Apache Group *******
6.5 rerun checksetup again to configure Bugzilla
#./Checksetup. pl
# Input administrator email account:
# Input the real name:
# Input the administrator password:
6.6 change the privilege
# Chown-r root:DaemonBugs/
6.7 intergrate with Apache
# Vim httpd. conf
<Directory "/usr/local/apache2/htdocs/bugs">
Options execcgi followsymlinks
Options + indexes + execcgi
Directoryindex index. cgi
AllowOverride limit
Order allow, deny
Allow from all
</Directory>
6.8 check the installation
Http: // 192.168.6.200/bugs/