ubuntu下安裝和配置bugzilla

2021-09-30 22:56:03 字數 1681 閱讀 5339

我們需要建乙個自己的bug管理系統,我就自己動手自己安裝bugzilla了,在安裝之前我在網上google了一下,看了乙個網友的安裝心得,不過基本上沒有在ubuntu/debian上安裝的。我就自己試著開始了。

不多說了:

sudo apt-get install mysql-server注意:需要設定mysql的root 使用者的密碼,注意要和以後的bugzilla的管理員密碼一致 

sudo apt-get install bugzilla按照需要輸入管理員帳號,密碼

ubuntu把需要的apache,sendmail,還有那些依賴的perl模組都一起安裝了.

開始配置bugzilla

配置apache2 

vi /etc/apache2/httpd.conf 新增 

servername localhost:80 

//網上人坑爹把單詞拼錯了

sudo /etc/init.d/apache2 restart 

配置bugzilla 

vi /etc/bugzilla/localconfig 

修改相應的配置:

$webservergroup = "www-data";

## how to access the sql database:

#$db_host = "localhost"; # where is the database?

$db_port = 3306; # which port to use

$db_name = "bugs"; # name of the mysql database

$db_user = "bugs"; # user to attach to the mysql database

//不用改資料庫  你安裝bugzallia的時候會讓你配置的 很簡單

## some people actually use passwords with their mysql database ...

#$db_pass = "1234";

## should checksetup.pl try to check if your mysql setup is correct?

# (with some combinations of mysql/msql-mysql/perl/moonphase this doesn"t work)

#$db_check = 1;

$index_html = 1;

配置資料庫:

mysql -u root -p1234

create database bugs;

grant select, insert, update, delete, index, alter, create, lock tables,create temporary tables, drop, references on bugs.* to bugs@localhost identified by "1234";

flush privileges;

quit;

退出資料庫;

重新生成bugzilla資料庫;

cd /usr/share/bugzilla/lib/

sudo perl checksetup.pl 

根據提示輸入

注意:在ubuntu上安裝的bugzilla的主登入視窗有點bug,需要從頁面地下的login按鈕進入就可以了。

ubuntu 下 vim安裝和配置

1 安裝vim sudo apt get install vim vim nox vim gtk vim gnome vim athena2 安裝spf13 curl l spf13 vim.sh sh spf13 vim.sh更新spf到最新版本 cd spf13 vim git pull vim...

Ubuntu下安裝和配置OpenSSH

一 安裝openssh server 1.首先檢視是否已經安裝過了 dpkg list grep ssh 若結果中沒有出現openssh server,則說明沒有安裝。2.安裝openssh server sudo apt get install openssh server 二 配置openssh...

Ubuntu下安裝和配置mysql

一 檢查 1 檢查是否已經安裝mysql whereis mysql 2 檢查mysql服務是否已經啟動 sudo netstat tap grep mysql 如果沒有安裝,下面就進行安裝。二 安裝 sudo apt get install mysql server mysql client 上面...