Install required packages
$ yum install perl* httpd* mysql-server* mod_perl-devel -y
Download the latest bugzilla 4.2.2 (2012/8)
$ cd /var/www/html
$ wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-4.2.2.tar.gz
$ tar zxvf bugzilla-4.2.2.tar.gz
$ mv bugzilla-4.2.2 bugzilla
Start mysql server
$ service mysqld start
Set mysql root password via mysql_secure_installation**
$ sudo /usr/bin/mysql_secure_installation
Create a DB for bugzilla mysql login with root
$ mysql -u root -p
> CREATE DATABASE bugs ;
> exit
Run checksetup script to find needed modules
$ ./checksetup.pl
Install required modules
$ /usr/bin/perl install-module.pl &ndash …