1. 禁用selinux:
vi /etc/sysconfig/selinux
SELINUX=enforcing --> SELINUX=disabled
:wq退出就行
2.联网(使用网桥方式)
3.启动mysql:
/etc/init.d/mysqld start 或 service mysql start
(我的fedora7 有mysql 只需更新)
# yum install mysql
Is this ok [y/n] y 回车
Is this ok[y/n]y回车
安装完会显示:Complete!
yum install mysql-devel
/etc/init.d/mysqld restart
4. #vi /etc/my.cnf
在[mysqld]区域中,添加如下行:
default-character-set=utf8
[mysqld]
#Allow packets up to 4MB
max_allowed_packet=4M
#Allow small words in full-text indexes
ft_min_word_len=2
5.启动mysql
#/sbin/chkconfig mysqld on(自启动)
#/etc/rc.d/init.d/mysqld start
设置密码:
# mysqladmin -u root password '000000'
# mysql -u root –p
Enter password:
mysql> create database bugs;
mysql> use bugs;
mysql>GRANT SELECT,INSERT,UPDATE,DELETE,INDEX,ALTER,CREATE, LOCK TABLES,DROP,REFERENCES ON bugs.* TO bugs@localhost IDENTIFIED BY '000000';
mysql> FLUSH PRIVILEGES;
mysql> quit;
安装bugzilla
1、解包:tar -zxvf bugzilla-2.20.4.tar.gz
2、配置:mkdir /var/www/html/bugzilla (创建bugzilla目录)
# cd bugzilla-3.4.6 然后
mv * /var/www/html/bugzilla (移动bugzilla文件到apache服务目录)
# rm -rf bugzilla-3.4.6
chmod -R 777 /var/www/html/bugzilla
配置启动acpache
httpd –v
/sbin/chkconfig httpd on(开机自启动)
# /usr/sbin/apachectl start (启动acpache)
# yum install apache-devel
配置apache
在大部分基本的 Apache 安装中,httpd.conf 文件位于 /etc/httpd/conf/ 目录。一定要检查您的安装,确保从正确的目录中打开 Apache 配置文件。使用下面的命令打开它:$ vi /etc/httpd/conf/httpd.conf。
您需要编辑这个文件中的一些行,令 Apache 能够利用 Bugzilla。首先,您需要允许 Apache 运行 cgi-bin 目录之外的 CGI 脚本。为此,必须在 httpd.conf 中添加(或者去除注释)以下这一行: AddHandler cgi-scrīpt .cgi 。
<Directory "/var/www/html/bugzilla">
Options ExecCGI FollowSymLinks
AllowOverride Limit
Order allow,deny
Allow from all
</Directory>
必须reboot!!!!才可以生效
# /etc/init.d/mysqld start
# /usr/sbin/apachectl start
安装perl模块
cd /var/www/html/bugzilla
./checksetup.pl
加速安装:模块
/usr/bin/perl install-module.pl CPAN
/usr/bin/perl install-module.pl DBD::mysql
yaml' not installed will not store persistent state
/usr/bin/perl -MCPAN -e 'install "YAML"'(解决建议)
/usr/bin/perl install-module.pl CGI
/usr/bin/perl install-module.pl Digest::SHA
/usr/bin/perl install-module.pl Date::Format
/usr/bin/perl install-module.pl DateTime
/usr/bin/perl install-module.pl DateTime::TimeZone
/usr/bin/perl install-module.pl Template
/usr/bin/perl install-module.pl Email::Send
/usr/bin/perl install-module.pl Email::MIME
/usr/bin/perl install-module.pl Email::MIME::Encodings
/usr/bin/perl install-module.pl Email::MIME::Modifier
安装完后配置localconfig
当perl的必须模块以及数据库的DBD都安装成功后,再次执行./checksetup.pl文件,查看perl模块的安装情况,若必须的perl模块都安装成功后,则会提示编辑/bugzilla/目录下刚生成的的localconfig文件, 使用vi编辑该文件,修改该文件中的2个参数的值:
a. $index.html='0' 改为 $index.html='1', 这样会生成一个index.html文件,该文件指向index.cgi.
b. 把$db_pass=''的空字符改为你当初创建bugs用户时为其分配的密码.
保存修改后退出,再次执行./checksetup.pl文件,此时将创建bugs数据库以及数据库中的表格,同时提示输入管理员的用户名, 真实姓名, 口令是什么. 自此bugzilla的配置完成.
chmod 777 bugzilla/
ls –l
注:提示输入管理员的用户必须使用邮箱名称,如:[email protected], 这是bugzilla的默认规定.
Success!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Urlbase
http://192.168.10.50/bugzilla/
最后可将selinux打开、
问题补充:
修改mysql的存储附件大小
set-variable=max_allowed_packet=4M
Restart mysql:
/etc/init.d/mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
现在进行bugzilla升级:
yum install bugzilla
在bugzilla目录下./checksetup.pl
reboot
#ServerName www.example.com:80
Apache多域名设置,ip不能直接访问
NameVirtualHost 192.168.164.133:80 设置此处为你的服务器ip和服务端口
<VirtualHost 192.168.164.133:80> // 服务器ip和端口
ServerAdmin [email protected] // 管理员邮件
DocumentRoot /var/www/html/nofile // 网站绑定目录
ServerName 192.168.164.133 // 访问网址
ServerAlias 192.168.164.133
ErrorLog logs/nofile.com.log
CustomLog logs/nofile.com-access_log common
</VirtualHost>
用ServerAlias 可以绑定多域名到一个网站上
<VirtualHost 192.168.164.133:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html/aaa.com
ServerName aaa.com
ServerAlias www.aaa.com // 用ServerAlias绑定多域名
ServerAlias bbb.com
ServerAlias www.bbb.com
ErrorLog logs/aaa.com.log
CustomLog logs/aaa.com-access_log common
</VirtualHost>
启用.htaccess文件,默认并没有启用.htaccess文件 需要把 Options FollowSymLinks 下面的AllowOverride 设置为 All
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
(一) 配置防火墙上的Apache
(1) 在/etc/httpd/conf/httpd.conf中添加虚拟主机。
ServerAdmin [email protected]
DocumentRoot /www/docs/business.media.com
ServerName www.business.media.com
ErrorLog logs/business.media.com-error_log
CustomLog logs/business.media.com-log_common
(2) 配置局域网中的DNS服务器,把www.business.media.com指向192.9.201.1。
检测邮件是否发出:
#sendmail –bp
若屏幕显示”mail queue is empty”信息,表示mail已送出
后期使用网站:
http://www.linux-cn.com/html/linux/program/20070422/9631_3.shtml
QA的权限一般设为: Canconfirm, editbugs
Developer的权限设为: none
Bugzilla中针对不同产品的权限设定:
http://cnborn.net/blog/2009/04/bugzilla-group-controls-to-products-introduction.html
对于制定bug界面的参考:
http://www.ibm.com/developerworks/cn/java/j-lo-bugzilla/
定制用户界面:
先备份!
cd /var/www/html/bugzilla/template/en/default/