How to install bugzilla in CentOS 6
System Environment: CentOS release 5.7 (Final) x64
1. Host Name configuration (not required)
Cat/etc/hosts
# Do not remove the following line, or various programs
# That require network functionality will fail.
#: 1 localhost6.localdomain6 localhost6
192.168.1.252 octest.test.com
192.168.1.252 test.com
Ii. install apache
1. yum install httpd-y
2. Configuration
Change the port number, Vm, and cgi support as needed.
A \ for example, ServerName 192.168.1.252: 8090
Add index. cgi to B \ DirectoryIndex (put first)
C \ remove # AddHandler cgi-script. cgi #
D \ comment the following four lines
# <Directory/>
# Options FollowSymLinks
# AllowOverride None
# </Directory>
E \
<Directory "/var/www/html/">
Options Indexes FollowSymLinks
AllowOverride None
AllowOverride all
Options + ExecCGI + FollowSymLinks
DirectoryIndex index. cgi
Order allow, deny
Allow from all
</Directory>
F \/etc/init. d/httpd restart
Iii. Install mysql
1. yum install mysql *-y
2. Create a mysql account with Permissions
Grant all on bugs. * TO bugs @ localhost identified by '000000 ′;
Flush privileges
4. Configure SMTP
The new version of bugzilla comes with the SMTP service. You only need to enable and set it, and do not need sendmail support.
Vim ../data/params
Configure
Maintainer: test@test.com
Mail_delivery_method: SMTP
Mailfrom: test@test.com
Smtpserver: smtp.test.com
Smtp_username: test@test.com
Smtp_password :**********
Note: maintainer and mailfrom must be the same! The smtp_username mailbox must be an existing real mailbox, and the smtp_password is the password of the mailbox (it must be the same as the password when you log on to the mailbox )!
5. Install the perl module required by bugzilla
Here we use the latest bugzilla-4.2.3.tar.gz
: Wget http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-4.2.3.tar.gz
Tar zxvf bugzilla-4.2.3.tar.gz
Cd bugzilla-4.2.3
Perl checksetup. pl
The perl packages that must be installed are compiled and installed online or automatically installed.
AppConfig CGI Data: Format dbi dbd: mysql Template TimeDate
For example:
1, compile and install tar-zxvf AppConfig-1.56.tar.gz
Cd AppConfig-1.56
Perl Makefile. PL
Make
Make test
Make install
2. install cpan Data: Format (force install Data: Format) online)
3, automatically install all/usr/bin/perl install-module.pl-all
Check again after installation:
Perl checksetup. pl
* This is Bugzilla 4.2.3 on perl 5.8.8
* Running on Linux 2.6.18-274. el5xen #1 SMP Fri Jul 22 05:31:07 EDT 2011
Checking perl modules...
Checking for CGI. pm (v3.21) OK: found v3.49
Checking for Digest-SHA (any) OK: found v5.72
Checking for TimeDate (v2.21) OK: found v2.24
Checking for DateTime (v0.28) OK: found v0.53
Checking for DateTime-TimeZone (v0.71) OK: found v1.50
Checking for DBI (v1.41) OK: found v1.622
Checking for Template-Toolkit (v2.22) OK: found v2.24
Checking for Email-Send (v2.00) OK: found v2.198
Checking for Email-MIME (v1.861) OK: found v1.911
Checking for Email-MIME-Encodings (v1.313) OK: found v1.313
Checking for Email-MIME-Modifier (v1.442) OK: found v1.911
Checking for URI (any) OK: found v1.60
Checking available perl DBD modules...
Checking for DBD-Pg (v1.45) OK: found v1.49
Checking for DBD-mysql (v4.00) OK: found v4.022
6. Bugzilla Configuration
1. vim localconfig
#Generate an index.html file pointing to index. cgi
: $ S/index_html = 0/index_html = 1/g
# Mysql user password, which is consistent with the previous password by default
$ Db_pass = '000000 ′
2, perl checksetup. pl
Enter administrator email bugadmin@test.com
Enter the real name:
Enter the logon password:
The prompt is complete.
3. Here, we 'd better go to mysql to verify whether the table required by bugzilla has been created.
Mysql-uroot-p-S/var/lib/mysql. sock
Mysql> use bugs
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with-
Database changed
Mysql> show tables;
+ ---------- +
| Tables_in_bugs |
+ ---------- +
| Attach_data |
| Attachments |
| Audit_log |
| Bug_group_map |
| Bug_see_also |
| Bug_severity |
| Bug_status |
| Bug_tag |
| Bugs |
| Bugs_activity |
4. Add Permissions
Chown-R root. apache bugzilla/
Chmod-R 777 bugzilla/
In this way, the installation of bugzilla is complete.
7. login and access
Http: // 192.168.1.252: 8090/bugzilla
Enter the management account and password to log on.