gentoo下bugzilla安装
gentoo下bugzilla安装
安装 bugzilla
进入bugzilla目录
# emerge -av dev-perl/GD
# ./checksetup.pl --check-modules
$ ./install-module.pl
需要的模块
# perl install-module.pl List::MoreUtils
# perl install-module.pl DateTime::Locale
mysql> create database testbugs;
mysql> grant all privileges on testbugs.* to 'bugzilla'@'%' identified by 'bugzilla';
mysql> grant all privileges on testbugs.* to 'bugzilla'@'localhost' identified by 'bugzilla';
mysql> flush privileges;
$ ./checksetup.pl
修改
localconfig
再次执行
$ ./checksetup.pl
ServerAdmin ohergal@gmail.com
DocumentRoot "/wch/dev/env/bug_track/bugzilla-3.4.6"
AddHandler cgi-script .cgi
ServerName localbugs
DirectoryIndex index.php index.php3 index.html index.cgi index.htm home.htm
Options FollowSymLinks Indexes ExecCGI
AllowOverride limit
Order deny,allow
# Deny from all
Satisfy all
$ ./checksetup.pl
增加rpc
# ./install-module.pl SOAP::Lite