Bugzilla的安装

系统fedora13-64

安装方式yum install bugzilla*

包括的依赖包

bugzilla noarch 3.0.2-6.fc9 fedora 857 k

bugzilla-contrib noarch 3.0.2-6.fc9 fedora 67 k

bugzilla-doc noarch 3.0.2-6.fc9 fedora 1.2 M

Installing for dependencies:

perl-Apache-DBI noarch 1.06-2.fc9 fedora 49 k

perl-AppConfig noarch 1.66-3.fc9 fedora 94 k

perl-Compress-Raw-Zlib i386 2.008-20.fc9 fedora 69 k

perl-Compress-Zlib i386 2.008-20.fc9 fedora 29 k

perl-Convert-ASN1 noarch 0.21-3.fc9 fedora 42 k

perl-Convert-BinHex noarch 1.119-8.fc9 fedora 47 k

perl-DBD-Pg i386 1.49-9.fc9 fedora 165 k

perl-Digest-SHA1 i386 2.11-7.fc9 fedora 53 k

perl-Email-Abstract noarch 2.134-3.fc9 fedora 31 k

perl-Email-Address noarch 1.888-3.fc9 fedora 36 k

perl-Email-MIME noarch 1.861-3.fc9 fedora 20 k

perl-Email-MIME-Attachment-Stripper noarch 1.314-3.fc9 fedora 16 k

perl-Email-MIME-ContentType noarch 1.014-3.fc9 fedora 17 k

perl-Email-MIME-Creator noarch 1.454-2.fc9 fedora 18 k

perl-Email-MIME-Encodings noarch 1.311-3.fc9 fedora 7.9 k

perl-Email-MIME-Modifier noarch 1.442-3.fc9 fedora 12 k

perl-Email-MessageID noarch 1.351-3.fc9 fedora 8.1 k

perl-Email-Reply noarch 1.202-2.fc9 fedora 19 k

perl-Email-Send noarch 2.192-2.fc9 fedora 40 k

perl-Email-Simple noarch 2.003-3.fc9 fedora 30 k

perl-Email-Simple-Creator noarch 1.424-2.fc9 fedora 16 k

perl-HTML-Parser i386 3.56-5.fc9 fedora 118 k

perl-HTML-Tagset noarch 3.10-8.fc9 fedora 15 k

perl-IO-Compress-Base i386 2.008-20.fc9 fedora 53 k

perl-IO-Compress-Zlib i386 2.008-20.fc9 fedora 134 k

perl-IO-Socket-SSL noarch 1.12-4.fc9 fedora 54 k

perl-IO-stringy noarch 2.110-8.fc9 fedora 70 k

perl-LDAP noarch 1:0.34-4.fc9 fedora 328 k

perl-MIME-Lite noarch 3.01-6.fc9 fedora 73 k

perl-MIME-Types noarch 1.23-3.fc9 fedora 31 k

perl-MIME-tools noarch 5.426-1.fc9 fedora 260 k

perl-MailTools noarch 2.02-3.fc9 fedora 100 k

perl-Net-SSLeay i386 1.32-5.fc9 fedora 221 k

perl-Pod-POM noarch 0.17-9.fc9 fedora 57 k

perl-Return-Value noarch 1.302-4.fc9 fedora 20 k

perl-SOAP-Lite noarch 0.68-6.fc9 fedora 351 k

perl-TeX-Hyphen noarch 0.140-7.fc9 fedora 34 k

perl-Template-Toolkit i386 2.19-4.fc9 fedora 1.4 M

perl-Text-Autoformat noarch 1.14.0-3.fc9 fedora 33 k

perl-Text-Reform noarch 1.12.2-4.fc9 fedora 37 k

perl-TimeDate noarch 1:1.16-8.fc9 fedora 33 k

perl-XML-LibXML i386 1:1.65-5.fc9 fedora 384 k

perl-XML-LibXML-Common i386 0.13-13.fc9 fedora 18 k

perl-XML-NamespaceSupport noarch 1.09-4.fc9 fedora 16 k

perl-XML-Parser i386 2.36-3.fc9 fedora 292 k

perl-XML-SAX noarch 0.16-5.fc9 fedora 78 k

perl-XML-Twig noarch 3.32-1.fc9 fedora 203 k

perl-libwww-perl noarch 5.808-7.fc9 fedora 375 k

postgresql-libs i386 8.3.1-1.fc9 fedora 210 k

ruby i386 1.8.6.114-1.fc9 fedora 514 k

ruby-libs i386 1.8.6.114-1.fc9 fedora 1.7 M

安装mysql数据库yum install mysql mysql-server mysql-devel

mysqladmin -u root password 'abc123'

mysql -u root -p

密码:abc123

create database bugs;

grant all on bugs.* to root; to root@localhost; to bugs; to bugs@localhost;

set password for bugs@localhost=password('abc123');

flush privileges;

exit

重启mysqld

编辑/etc/bugzilla/localconfig

进入bugzilla目录/usr/share/bugzilla

运行perl checksetup.pl

ok

启动apache

登录: http://server/bugzilla

即:http://192.168.210.122/bugzilla

用户名 shuaifeng.wang@i-soft.com.cn

密码:abc123

附件内是bugzilla的使用手册。

#######################################################################

运行 perl checksettup.pl后 提示的重要部分

*

  • OPTIONAL MODULES *

*

  • Certain Perl modules are not required by Bugzilla, but by *
  • installing the latest version you gain access to additional *
  • features. *
  • The optional modules you do not have installed are listed below, *
  • with the name of the feature they enable. Below that table are the *
  • commands to install each module. *

*

  • MODULE NAME * ENABLES FEATURE(S) *

*

  • GD * Graphical Reports, New Charts, Old Charts *
  • Chart * New Charts, Old Charts *
  • Template-GD * Graphical Reports *
  • GDTextUtil * Graphical Reports *
  • GDGraph * Graphical Reports *
  • PerlMagick * Optionally Convert BMP Attachments to PNGs *

*

COMMANDS TO INSTALL OPTIONAL MODULES:

GD: /usr/bin/perl install-module.pl GD

Chart: /usr/bin/perl install-module.pl Chart::Base

Template-GD: /usr/bin/perl install-module.pl Template::Plugin::GD::Image

GDTextUtil: /usr/bin/perl install-module.pl GD::Text

GDGraph: /usr/bin/perl install-module.pl GD::Graph

PerlMagick: /usr/bin/perl install-module.pl Image::Magick

To attempt an automatic install of every required and optional module

with one command, do:

/usr/bin/perl install-module.pl --all

Reading /etc/bugzilla/localconfig...

Checking for DBD-mysql (v4.00) ok: found v4.013

Checking for MySQL (v4.1.2) ok: found v5.1.45

修改这部分:/etc/my.cnf 在[mysqld]中加入max_allowed_packet=30M

WARNING: You need to set the max_allowed_packet parameter in your MySQL

configuration to at least 3276750. Currently it is set to 1048576.

You can set this parameter in the [mysqld] section of your MySQL

configuration file.

根据提示不同做具体调整与修改。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值