歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> linux下成功安裝bugzilla

linux下成功安裝bugzilla

日期:2017/2/28 17:33:20   编辑:Linux教程
下載必備的東西:
sudo apt-get install mysql-server mysql
sudo apt-get install apache2 apache-perl nttpd apache-ssl
sudo apt-get install bugzilla

創建bugzilla鏈接目錄:
sudo mkdir /var/www/bugzilla

配置bugzilla:
/etc/bugzilla/localconfig

$db_host = "localhost";
$db_port = "80";
$db_name = "bugzilla";
$db_user = "bugzilla";
$db_pass = "xxxx";

配置bugzilla目錄:
/etc/bugzilla/params

'urlbase' => '/cgi-bin/bugzilla/',

配置mysql:
mysql>creat database bugzilla;

mysql>grant all privileges on bugzilla.* to 'bugzilla'@'localhost' identified by '123'

查找並安裝所需模塊兒:
/usr/share/bugzilla/lib/
./checksetup.pl -check-modules

安裝成功……
Copyright © Linux教程網 All Rights Reserved