天天看点

ubuntu下安装和配置bugzilla

我们需要建一个自己的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按钮进入就可以了。

本文出自seven的测试人生公众号最新内容请见作者的github页:http://qaseven.github.io/