标签:bugzilla
Ubuntu搭建bugzilla:create database bugzilla default character set utf8;
grant all on bugzilla.* to bugzilla@‘localhost‘ identified by ‘xxxxxx‘;
flush privileges;
exit
$db_host = ‘localhost‘;
$db_name = ‘bugzilla‘;
$db_user = ‘bugzilla‘;
$db_pass = ‘xxxxx‘;
:wq
输入管理员邮箱
输入管理员账号登录名
输入管理员账号真实名
输入密码
再次输入密码
<Directory /var/www/html/bugzilla>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi index.html
AllowOverride All
Order allow,deny
Allow from all
</Directory>
:wq
访问http://ip/bugzilla
标签:bugzilla
原文地址:http://blog.51cto.com/yangzhiming/2126529