分类: 信息化
2012-04-18 17:15:54
1. 安装Prel.
sudo apt-get install prel
安装完成后检查:perl -v
显示 This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi 正常。
2. 安装 mysql
sudo apt-get install mysql-server,安装过程中,会要求输入管理员(root)的password。输入完成后按tab键移动光标。
安装 完成后,运行 mysql -V, 将显示安装的版本
3. 安装Apache
sudo apt-get install apache2
安装完成后,启动浏览器进行检验,浏览器中出现“It works!“, 说明安装正常。
4. 安装 bugzilla
sudo apt-get install bugzilla3
安装过程中要求输入 bugzilla 管理员的email 地址,password等信息,并要求输入mysql管理员密码,用来创建bugzilla的数据库bugs。
5. 进行配置:
bugzilla3 的默认安装目录为 /usr/share/bugzilla3
Apache2 的默认安装目录为 /usr/share/apache2
Apache2 的配置文件目录为 /etc/apache2
打开 /etc/apache2/httpd.conf sudo vim /etc/apache2/httpd.cpnf
将如下内容添加到该文件中
Alias /bugzilla "/usr/share/bugzilla3/web"
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit
ServerName localhost
添加完成后,重启Apache。 sudo /etc/init.d/apache2 restart
重启完成后,打开浏览器,输入 进行验证