1, 下载bugzilla
运行./checksetup.pl
2, 根据提示安装perl模块
位置:http://search.cpan.org/search?query=IO%3A%3AScalarArray&mode=all
下载后:
perl Makefile.pl
make
make test
make install
(过程如果有依整性错误,请安装相应模块)
3,配置mysql
mysql -u root
create database bugs
grant all on bugs.* to bugzilla@'localhost' identified by 'bugs'
4,配置vi ./localconfig设置数据库
5, 再次运行./checksetup.pl会创建数据库和设置bugzilla管理员(以mail作为登录名)
6, 将bugzilla目录拷到/www/html/下
7, 在/etc/httpd/conf.d/下增加bugzilla.conf内容如下:
AddHandler cgi-script .cgi .pl
<Directory "/var/www/html/bugzilla">
AllowOverride None
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>
8,运行apachectl restart
9,访问:http://hostname/bugzilla/index.cgi
posted on 2008-03-15 14:41
liunix 阅读(160)
评论(0) 编辑 收藏