`
sdfiiiiii
  • 浏览: 17096 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Bugzilla安装

 
阅读更多


1. 下载bugzilla

http://www.bugzilla.org/

可以选择

Release of Bugzilla 4.4rc1, 4.2.4, 4.0.9 and 3.6.12

放在/var/www/html下面

2. 创建mysql 用户,insert into mysql.user语句(参考mysql)

3. 检查环境

执行bugzilla-4.4rc1下的checksetup.pl (perl checksetup.pl),按照指示进行模块安装。

 

 

 

localconfig:

注意本地的port, name, db等,可以参看链接进行配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# If you are using Apache  as  your web server, Bugzilla can create .htaccess
# files  for  you, which will keep  this  file (localconfig) and other
# confidential files from being read over the web.
# If  this  is  set  to  1 , checksetup.pl will create .htaccess files  if
# they don't exist.
# If  this  is  set  to  0 , checksetup.pl will not create .htaccess files.
$create_htaccess =  1 ;
       
# The name of the group that your web server runs  as . On Red Hat
# distributions,  this  is  usually  "apache" . On Debian/Ubuntu, it  is
# usually  "www-data" .
# If you have use_suexec turned on below, then  this  is  instead the name
# of the group that your web server switches to to run cgi files.
# If  this  is  a Windows machine, ignore  this  setting,  as  it does nothing.
# If you  do  not have access to the group your scripts will run under,
set  this  to  "" . If you  do  set  this  to  "" , then your Bugzilla installation
# will be _VERY_ insecure, because some files will be world readable/writable,
# and so anyone who can  get  local access to your machine can  do  whatever they
# want. You should only have  this  set  to  ""  if  this  is  a testing installation
# and you cannot  set  this  up any other way. YOU HAVE BEEN WARNED!
# If you  set  this  to anything other than  "" , you will need to run checksetup.pl
as  root or  as  a user who  is  a member of the specified group.
$webservergroup =  'apache' ;
       
# Set  this  to  1  if  Bugzilla runs  in  an Apache SuexecUserGroup environment.
# If your web server runs control panel software (cPanel, Plesk or similar),
# or  if  your Bugzilla  is  to run  in  a shared hosting environment, then you are
# almost certainly  in  an Apache SuexecUserGroup environment.
# If  this  is  a Windows box, ignore  this  setting,  as  it does nothing.
# If  set  to  0 , checksetup.pl will  set  file permissions appropriately  for
# a normal webserver environment.
# If  set  to  1 , checksetup.pl will  set  file permissions so that Bugzilla
# works  in  a SuexecUserGroup environment. 
$use_suexec =  0 ;
       
# What SQL database to  use . Default  is  mysql. List of supported databases
# can be obtained by listing Bugzilla/DB directory - every module corresponds
# to one supported database and the name of the module (before  ".pm" )
# corresponds to a valid value  for  this  var iable.
$db_driver =  'mysql' ;
       
# The DNS name or IP address of the host that the database server runs on.
$db_host =  'localhost' ;
       
# The name of the database. For Oracle,  this  is  the database's SID. For
# SQLite,  this  is  a name (or path)  for  the DB file.
$db_name =  'mybugs' ;
       
# Who we connect to the database  as .
$db_user =  'mybugs' ;
       
# Enter your database password here. It's normally advisable to specify
# a password  for  your bugzilla database user.
# If you  use  apostrophe ( ') or a backslash (\) in your password, you' ll
# need to  escape  it by preceding it  with  a '\' character. (\') or (\)
# (It  is  far simpler to just not  use  those characters.)
$db_pass =  'mybugs' ;
       
# Sometimes the database server  is  running on a non-standard port. If that's
# the  case  for  your database server,  set  this  to the port number that your
# database server  is  running on. Setting  this  to  0  means " use  the  default
# port  for  my database server."
$db_port =  0 ;
       
# MySQL Only: Enter a path to the unix socket  for  MySQL. If  this  is
# blank, then MySQL's compiled- in  default  will be used. You probably
# want that.
$db_sock =  '' ;
       
# Should checksetup.pl  try  to verify that your database setup  is  correct?
# With some combinations of database servers/Perl modules/moonphase  this
# doesn't work, and so you can  try  setting  this  to  0  to make checksetup.pl
# run.
$db_check =  1 ;
       
# Most web servers will allow you to  use  index.cgi  as  a directory
# index, and many come preconfigured that way, but  if  yours doesn't
# then you'll need an index.html file that provides redirection
# to index.cgi. Setting $index_html to  1  below will allow
# checksetup.pl to create an index.html  for  you  if  it doesn't exist.
# NOTE: checksetup.pl will not replace an existing file, so  if  you
#       wish to have checksetup.pl create one  for  you, you must
#       make sure that index.html doesn't already exist.
$index_html =  0 ;
       
# If you want to  use  the CVS integration of the Patch Viewer, please specify
# the full path to the  "cvs"  executable here.
$cvsbin =  '/usr/bin/cvs' ;
       
# If you want to  use  the  "Difference Between Two Patches"  feature of the
# Patch Viewer, please specify the full path to the  "interdiff"  executable
# here.
$interdiffbin =  '/usr/bin/interdiff' ;
       
# For the  "Difference Between Two Patches"  feature to work, we need to know
# what directory the  "diff"  bin  is  in . (You only need to  set  this  if  you
# are using that feature of the Patch Viewer.)
$diffpath =  '/usr/bin' ;
       
# This secret key  is  used by your installation  for  the creation and
# validation of encrypted tokens. These tokens are used to implement
# security features  in  Bugzilla, to protect against certain types of attacks.
# A random string  is  generated by  default . It's very important that  this  key
is  kept secret. It also must be very long.
$site_wide_secret =  'DgG0X6nSQOog680UABhn430hMpYgYPY3DPJhKUSgnffxBtDpbfnxd98xk6laYHZs' ;

/etc/httpd/conf/httpd.conf

把AddHandler cgi-script .cgi注释去掉

1
2
3
4
5
6
7
8
9
<Directory / var /www/html/bugzilla- 4 .4rc1>  
     AddHandler   cgi-script   .pl
     AddHandler cgi-script .cgi
     Options Indexes FollowSymLinks ExecCGI  
     AllowOverride All  
     DirectoryIndex index.cgi index.html  
     Order allow,deny  
     Allow from all
</Directory>

 

 

 

 

 

 

http://www.cnblogs.com/snailfuture/archive/2012/08/28/2658991.html

http://bbs.51cto.com/thread-916541-1.html

windows下配置过程:

http://www.cnblogs.com/Warmsunshine/archive/2012/03/25/2416265.html

分享到:
评论

相关推荐

    linux下bugzilla安装配置全过程

    Linux 下 Bugzilla 安装配置全过程 Linux 下 Bugzilla 安装配置是指在 Linux 操作系统中安装和配置 Bugzilla 软件的整个过程。Bugzilla 是一个流行的缺陷跟踪系统,广泛应用于软件开发和测试中。下面将一步步指导...

    Bugzilla安装及操作指南.rar

    一、Bugzilla安装 1. 系统需求:Bugzilla通常在Linux服务器上运行,需要支持Perl、MySQL数据库和Apache Web服务器的环境。 2. 安装Perl:Perl是Bugzilla的基础,确保系统已安装最新版本的Perl。 3. 安装MySQL:...

    Bugzilla 安装

    本文将详细介绍如何在Windows环境下安装配置Bugzilla。 首先,安装MySQL数据库是Bugzilla运行的基础。你需要从MySQL官方网站下载适合你系统的版本,例如MySQL 4.1.22 for win32。安装过程可以参考相关教程,如...

    bugzilla安装步骤

    【Bugzilla安装步骤详解】 Bugzilla是一款开源的错误跟踪系统,常用于软件开发过程中记录和追踪软件缺陷。本文将详细介绍如何在Windows XP环境下安装Bugzilla,包括所需软件、安装过程和配置步骤。 **一、所需软件...

    linux下bugzilla安装

    2. **Bugzilla安装** - **获取**:下载Bugzilla的源代码包,并解压到合适的目录。 - **依赖**:Bugzilla运行需要特定的Perl模块。检查并安装所有必要的Perl模块,通常使用`cpan`或`cpanm`命令。 - **配置**:进入...

    windows下bugzilla安装教程

    **Bugzilla在Windows下的安装教程** Bugzilla是一款广泛使用的开源缺陷跟踪系统,它帮助企业或团队有效地管理软件开发过程中的问题和缺陷。本教程将详细阐述如何在Windows操作系统上安装并配置Bugzilla,以及与之...

    bugzilla 安装说明

    ### Bugzilla 安装与配置知识点详解 #### 一、关于本指南 - **版权信息**:本文档为 Bugzilla 官方发布的安装指南,版权所有归 Bugzilla 团队所有。 - **免责声明**:尽管作者尽力确保文档内容的准确性,但不承担...

    Bugzilla安装步骤详解

    【Bugzilla安装步骤详解】 Bugzilla是一款开源的缺陷跟踪系统,由Mozilla公司开发,用于软件测试和项目管理。它的核心功能包括报告问题、查询问题记录、生成报表以及处理解决方案。Bugzilla的优势在于其Web基础,...

    bugzilla 安装和汉化包

    一、Bugzilla安装 1. 环境准备:Bugzilla通常运行在Linux服务器上,需要Apache或Nginx作为Web服务器,MySQL或PostgreSQL作为数据库系统,以及Perl环境。确保这些组件已安装并配置正确。 2. 下载安装包:从Bugzilla...

    windows 下Bugzilla 安装指南

    在Windows平台下安装Bugzilla是一个涉及多个步骤的过程,需要安装和配置多种软件和工具。Bugzilla是一个广泛使用的开源缺陷跟踪系统,可以帮助开发者和测试者有效地管理和追踪软件中的bug。以下是在Windows环境下...

    linux下bugzilla安装资源和参考步骤

    在Linux环境下,特别是Fedora 12操作系统上安装Bugzilla,需要遵循一定的步骤,并依赖于一些核心组件,如MySQL数据库、Apache web服务器和Perl环境。以下是详细的安装和配置过程: **一、系统需求** 1. **Linux操作...

    bugzilla安装过程详细

    1 安装概述 1.1 安装环境:Windows2003+mysql+IIS 1.2 以下软件是必须的: MySQL:http://dev.mysql.com/downloads/mysql/5.1.html http://192.168.102.42/www/download/softDown?softId=23413 Bugzilla:...

    bugzilla安装指南

    《Bugzilla安装指南》 Bugzilla是一款开源的错误跟踪系统,广泛用于软件开发中的缺陷管理。本指南将详细讲解在Windows XP Professional系统上,利用Apache服务器进行Bugzilla的安装过程,以及解决可能出现的问题。 ...

    Bugzilla安装文档-pdf

    根据给定的文件信息,以下是对“Bugzilla安装文档”中的关键知识点的详细解析: ### Bugzilla安装环境 #### 操作系统与软件需求 - **操作系统**:Fedoracore6,选择此版本的原因可能在于其稳定性和社区支持。 - **...

    bugzilla2.18 安装文档

    **Bugzilla安装流程:** 1. **解压Bugzilla源码:** `tar -xzvf bugzilla2.18rc2.tar.gz` 2. **移动源码至发布目录:** `mv -f bugzilla2.18rc2 /var/www/html/bugzilla` 3. **进入Bugzilla目录:** `cd /var/...

    windows下bugzilla安装过程

    winXP下的bugzilla安装,配置IIS服务器

    Bugzilla安装在windows下的教程

    ### Bugzilla在Windows环境下的安装教程 #### 一、前言 Bugzilla是一款非常流行的开源缺陷跟踪系统,广泛应用于软件开发团队中进行错误追踪与管理。对于希望在Windows环境下搭建Bugzilla系统的用户而言,本教程提供...

Global site tag (gtag.js) - Google Analytics