- 浏览: 105198 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
jkfzero:
IE6这个方法不好使,居然是直接给file加onclick事件 ...
自定义input type=”file”的样式以及引出的相关技术问题 -
拜月小刀:
没中文字体 暂时不是很实用 加载这个js 也会影响速度吧 ...
低调发布一个用Google Font Api写的Jquery字体插件 -
junlas:
支持~~以后会用得上....
低调发布一个用Google Font Api写的Jquery字体插件 -
jkfzero:
不知道大家有没有去Google的字体库看,很多平时没有的字体, ...
低调发布一个用Google Font Api写的Jquery字体插件 -
ghyghoo8:
这个好。。。以后字体效果就可以直接用了。。。娃哈哈~
低调发布一个用Google Font Api写的Jquery字体插件
昨天好不容易安装完Twiki。Perl模块之间的依赖关系比较复杂,缺失的东西可以去Cpan寻找。今天安装Bugzilla又有若干问题,在CSDN上找到一个解决方法,就转载过来了。
Bugzilla 的安装
最新的稳定版 Bugzilla 是 3.0 版的,看了一下 release notice ,对附属软件有版本的要求。(只要 /etc/rc.d/init.d 下面有对应的服务脚本,就可以用 Server httpd start/stop/restart 的方式直接启动服务)
1. Perl :用 perl –v 检查 Perl 的版本,版本号为 5.8.8 ,要求 Perl 5.8.0 。
2. Database Engine :用 mysql –v 检查 MySQL 的版本,出现 ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' ,说明 MySQL 服务未启动。先输入 mysql_install_db 初始化数据库,再输入 cd /etc/rc.d/init.d 然后输入 ./mysqld start 可以启动服务。如果要加入自启动服务队列的话,首先得看 /etc 下 inittab 文件中首先启动的 id 号,我的机器是 5 ,然后在 /etc/rc.d/rc5.d 中添加启动服务的链接 ln -s ../init.d/mysqld S94mysqld 。再次用 mysql –v ,版本号为 5.0.37 , Bugzillia 对 Database 无版本要求。另外,如果 Database 选用 PostgreSQL 的话,可用 psql –v 检查 PostgreSQL 的版本,要求 8.00 。
3. Web Server :只要用支持 CGI scripts 的 server 即可,一般来说使用的是 Apache 。使用自启动服务 ln -s ../init.d/httpd S94httpd 。使用 httpd –v 查看版本,版本号为 2.2.4 。可以用 http://127.0.0.1 来测试服务是否正常。
4. Bugzilla :将 bugzilla-3.0.tar.gz 包放入 /usr/local ,解包 tar -zxvf bugzilla-3.0.tar.gz ,进入 bugzilla 目录。
5. Perl Modules :用 ./checksetup.pl --check-modules 来检查是否拥有符合的 Perl Modules 。
[root@localhost bugzilla-3.0]# ./checksetup.pl --check-modules
* This is Bugzilla 3.0 on perl 5.8.8
* Running on Linux 2.6.21-1.3194.fc7 #1 SMP Wed May 23 22:35:01 EDT 2007
Checking perl modules...
Checking for CGI (v2.93) ok: found v3.15
Checking for TimeDate (v2.21) not found
Checking for DBI (v1.41) ok: found v1.53
Checking for PathTools (v0.84) ok: found v3.12
Checking for Template-Toolkit (v2.12) ok: found v2.18
Checking for Email-Send (v2.00) not found
Checking for Email-MIME-Modifier (any) not found
Checking available perl DBD modules...
Checking for DBD-Pg (v1.45) ok: found v1.49
Checking for DBD-mysql (v2.9003) ok: found v3.0008
The following Perl modules are optional:
Checking for GD (v1.20) not found
Checking for Template-GD (any) not found
Checking for Chart (v1.0) not found
Checking for GDGraph (any) not found
Checking for GDTextUtil (any) not found
Checking for XML-Twig (any) not found
Checking for MIME-tools (v5.406) not found
Checking for libwww-perl (any) ok: found v2.033
Checking for PatchReader (v0.9.4) not found
Checking for PerlMagick (any) not found
Checking for perl-ldap (any) not found
Checking for SOAP-Lite (any) not found
Checking for HTML-Parser (v3.40) ok: found v3.56
Checking for HTML-Scrubber (any) not found
Checking for Email-MIME-Attachment-Stripper (any) not found
Checking for Email-Reply (any) not found
Checking for mod_perl (v1.999022) ok: found v2.000003
Checking for CGI (v3.11) ok: found v3.15
Checking for Apache-DBI (v0.96) not found
显然有很多 Modules 没有安装,明天的基本完成目标就是到 http://www.cpan.org/modules/ 下载并安装这些包。
Bugzilla 的安装(续)
5. Perl Modules :由于公司无法用ftp 连到国外的网站上,所以就无法使用自动更新Perl Modules 的命令 perl -MCPAN -e ’install "<modulename>"’ 。 必须得一个包一个包下载下来分别安装。
http://search.cpan.org 在这个页面上可以 search 到所要的 tar 包。(什么是 CPAN ? CPAN 是 Comprehensive Perl Archive Network 的缩写,它是一个巨大的 Perl 软件收藏库,收集了大量有用的 Perl 模块 (modules) 及其相关的文件。)
TimeDate :在 http://search.cpan.org/~gbarr/TimeDate-1.16/lib/Date/Format.pm 下载 TimeDate-1.16.tar.gz , module version 为 2.22 。在任意文件夹 tar –xf <filename> 后,进入目录,顺序执行 perl Makefile.PL/make/make test/make install 即可。其他 module 的安装方法与此相同。在执行 make 时,遇到错误
Manifying blib/man3/Date::Format.3pm
Can't open blib/man3/Date::Format.3pm for writing: 没有那个文件或目录
at /usr/lib/perl5/5.8.8/ExtUtils/Command/MM.pm line 132
经过石可箴的介绍, blib/man3 是专门放 man 的说明文档的地方,对于 TimeDate 的运行来说不是必要的,所以在 Makefile 中将
$(NOECHO) $(POD2MAN) --section=3 --perm_rw=$(PERM_RW) \
lib/Date/Format.pm $(INST_MAN3DIR)/Date::Format.$(MAN3EXT) \
lib/Date/Parse.pm $(INST_MAN3DIR)/Date::Parse.$(MAN3EXT) \
lib/Time/Zone.pm $(INST_MAN3DIR)/Time::Zone.$(MAN3EXT)
用 # 注释掉即可。 make install 后,用 /usr/local/bugzilla-3.0/checksetup.pl --check-modules 检查 TimeDate 包安装完毕。想想还有 17 个这样的包要安装。。。我的天。。。
Email-Send :在 http://www.cpan.org/modules/by-module/Email/ 下载 Email-Send-2.185.tar.gz ,解包后安装, perl Makefile.PL 后有 warning 。
Warning: prerequisite Email::Address 1.80 not found.
Warning: prerequisite Email::Simple 1.92 not found.
Warning: prerequisite Module::Pluggable 2.97 not found.
Warning: prerequisite Return::Value 1.28 not found.
说明 Email::Address 1.80/Email::Simple 1.92/Module::Pluggable/Return::Value 1.28 三个 perl 模块没有安装,遂即到网上找包。
Email::Address :在 http://search.cpan.org/~rjbs/Email-Address-1.888/lib/Email/Address.pm 下载 Email-Address-1.888.tar.gz , make 的时候同样发生了类似于 TimeDate 的 make 错误
Manifying blib/man3/Email::Address.3pm
Can't open blib/man3/Email::Address.3pm for writing: 没有那个文件或目录
at /usr/lib/perl5/5.8.8/ExtUtils/Command/MM.pm line 132
说明一定是我机器上有环境变量或者其他什么的没有设置正确。将关键字放在 google 上无相关信息,随即想到了上 CPAN 官方论坛上求助, www.cpanforum.org ,等待回复。
Bugzilla
的安装(续)
From
the official forum of CPAN, I found some users of different perl
modules met the same installation problem like me. But it seems no one
has solved it.
Here is the reference links:
http://www.cpanforum.com/threads/264
http://www.cpanforum.com/posts/3174
http://ubuntuforums.org/archive/index.php/t-12245.html
This is my topic:
http://www.cpanforum.com/threads/5832
Since no clue to solve it, I continue to learn about DirectFB.
In
the afternoon, I found a link in Chinese about this problem, and he has
solve it! But he just used the auto update command, which based on the
permission of ftp protocol… -_-!
http://www.linuxfans.org/bbs/archiver/tid-170104.html
Bugzilla
的安装(续)
今天有大的突破,石可箴尝试了很多方法后发现,把
perl module
的安装文件从
VMwareTool
创建的目录
/mnt/hgfs/ShareFolder
移出来后再
make
即可。现在总算可以正常地手动安装下去了。
随即我补完了自己先前提的问题以防后人再走弯路。
http://www.cpanforum.com/threads/5832
Perl Modules Installed:
(缩进代表安装的依赖关系)
TimeDate
Template-Toolkit
Text::Autoformat
Text::Reform
Image::Info/Image::Size
Pod::POM
File::Temp/File::Spec
Email-Send
Email::Address
Test::Pod::Coverage
Pod::Coverage
Devel::Symdump
Test::Pod
Pod::Simple
Pod::Escapes
Test::Pod::Coverage
Pod::Coverage
碰到了棘手的问题:在安装
Pod::Coverage
这个
module
时,他的一个必须要安装的
module Test::Pod::Coverage
的安装,也必须要
Pod::Coverage
。这样就形成了一个死循环。。。
尝试了一下强行安装
Test::Pod::Coverage
这个
module
,报错了但好像还是装上了点东西的,层层倒退安装上去,终于把
Pod::Coverage
这个
module
强行安装上去了,保险起见,又从最低层
module
层层安装了一遍上来。
克服了这些困难后,明天应该能将
perl modules
搞定了。
Bugzilla
的安装(续)
Here is all the PERL MODULES I installed these two days, it’s too too lengthy.
perl modules:
TimeDate
Template-Toolkit
Text::Autoformat
Text::Reform
Image::Info/Image::Size
Pod::POM
File::Temp/File::Spec
Email-Send
Email::Address
Test::Pod::Coverage
Pod::Coverage
Devel::Symdump
Test::Pod
Pod::Simple
Pod::Escapes
Test::Pod::Coverage
Pod::Coverage
Email::Simple
Test::MinimumVersion
File::Find::Rule::Perl
File::Find::Rule
Number::Compare
Text::Glob
Perl::MinimumVersion
List::Util
PPI
Clone
Taint::Runtime
List::MoreUtils
Task::Weaken
Test::Object
Test::Builder
Params::Util
Test::Script
IPC::Run3
version
version
Module::Pluggable
Return::Value
Email::Abstract
MIME::Entity
IO::Stringy
Mail::Field
Mail::Header
Mail::Internet
Email-MIME-Modifier
Email::MIME
MIME::Types
Email::MIME::ContentType
Email::MIME::Encodings
Email::MessageID
perl modules optional:
GD
libgd
Math::Trig
Template-GD
GD::Text
GD::Graph
GD::Graph3D
Chart
XML-Twig
XML::Parser
HTML::TreeBuilder
Tie::IxHash
Text::Iconv
Unicode::Map8
Unicode::String
XML::Handler::YAWriter
XML::Parser::PerlSAX
XML::SAX::Writer
XML::Filter::BufferText
LWP::Simple
XML::Simple
XML::SAX
XML::NamespaceSupport
XML::XPathEngine
XML::XPath
GDGraph
GDTextUtil
MIME-tools
PatchReader
SOAP-Lite
XMLRPC::Lite
UDDI::Lite
XML::Parser::Lite
HTML-Scrubber
Email-Reply
Email::MIME::Creator
Email::Simple::Creator
Email::Date
Time::Piece
Apache-DBI
Image::Magick
Net::LDAP
Email-MIME-Attachment-Stripper
The last two in red is the only modules I can’t install now.
About
the Image::Magick module, when I install it, it shows ‘Note (probably
harmless): No library found for -lgvc’. I think I can solve it by
accessing to its website:
www.imagemagick.org
About
the Net::LDAP, when I install it, it will try to access to the perl
server by FTP. It seems without FTP, it just can’t be installed
properly. I will try to find another way to solve it tomorrow.
Bugzilla
的安装(续)
All Perl Modules have been done!
I’ll continue to install Bugzilla platform.
6.
Sendmail
:到
www.sendmail.org
下载最新的
tarball
。解压后,
./Build
安装
sendmail
系统。
Reboot
系统,假设
sendmail
进程已经被自动启动的话,用
# telnet localhost 25
ehlo test
来查看
sendmail
运行是否正常。其中
250-AUTH DIGEST-MD5 CRAM-MD5 LOGIN PLAIN
代表了
smtp
协议工作正常。退出
telnet
可以用
quit
。
Bugzilla
的相关文件安装工作到此为止。
Bugzilla
的配置
首先进入
/usr/local/bugzilla-3.0
的目录运行
# ./checksetup.pl
,在
bugzilla
自动检查完所有
module
后,会生成
localconfig
文件,其中唯一需要改的设置是
$db_pass
,可以设置
access
入
database
的
password
。看了一下其他参数,暂时默认即可,重新运行
# ./checksetup.pl
以激活新的配置参数。
在
Bugzilla Guide
上看到一个程序叫
Bugzilla Database Schema
,这个软件可以将
Bugzilla
的
database
信息用图表表示出来,还可以比较不同
version
数据库的不同之处,觉得这个程序挺有用的,等
Bugzilla
正常工作后再来安装测试一下。网站地址:
http://www.ravenbrook.com/project/p4dti/tool/cgi/bugzillaschema
设置
EN
发表评论
相关推荐
Linux 下 Bugzilla 安装配置全过程 Linux 下 Bugzilla 安装配置是指在 Linux 操作系统中安装和配置 Bugzilla 软件的整个过程。Bugzilla 是一个流行的缺陷跟踪系统,广泛应用于软件开发和测试中。下面将一步步指导...
一、Bugzilla安装 1. 系统需求:Bugzilla通常在Linux服务器上运行,需要支持Perl、MySQL数据库和Apache Web服务器的环境。 2. 安装Perl:Perl是Bugzilla的基础,确保系统已安装最新版本的Perl。 3. 安装MySQL:...
本文将详细介绍如何在Windows环境下安装配置Bugzilla。 首先,安装MySQL数据库是Bugzilla运行的基础。你需要从MySQL官方网站下载适合你系统的版本,例如MySQL 4.1.22 for win32。安装过程可以参考相关教程,如...
【Bugzilla安装步骤详解】 Bugzilla是一款开源的错误跟踪系统,常用于软件开发过程中记录和追踪软件缺陷。本文将详细介绍如何在Windows XP环境下安装Bugzilla,包括所需软件、安装过程和配置步骤。 **一、所需软件...
2. **Bugzilla安装** - **获取**:下载Bugzilla的源代码包,并解压到合适的目录。 - **依赖**:Bugzilla运行需要特定的Perl模块。检查并安装所有必要的Perl模块,通常使用`cpan`或`cpanm`命令。 - **配置**:进入...
**Bugzilla在Windows下的安装教程** Bugzilla是一款广泛使用的开源缺陷跟踪系统,它帮助企业或团队有效地管理软件开发过程中的问题和缺陷。本教程将详细阐述如何在Windows操作系统上安装并配置Bugzilla,以及与之...
【Bugzilla安装步骤详解】 Bugzilla是一款开源的缺陷跟踪系统,由Mozilla公司开发,用于软件测试和项目管理。它的核心功能包括报告问题、查询问题记录、生成报表以及处理解决方案。Bugzilla的优势在于其Web基础,...
一、Bugzilla安装 1. 环境准备:Bugzilla通常运行在Linux服务器上,需要Apache或Nginx作为Web服务器,MySQL或PostgreSQL作为数据库系统,以及Perl环境。确保这些组件已安装并配置正确。 2. 下载安装包:从Bugzilla...
在Windows平台下安装Bugzilla是一个涉及多个步骤的过程,需要安装和配置多种软件和工具。Bugzilla是一个广泛使用的开源缺陷跟踪系统,可以帮助开发者和测试者有效地管理和追踪软件中的bug。以下是在Windows环境下...
在Linux环境下,特别是Fedora 12操作系统上安装Bugzilla,需要遵循一定的步骤,并依赖于一些核心组件,如MySQL数据库、Apache web服务器和Perl环境。以下是详细的安装和配置过程: **一、系统需求** 1. **Linux操作...
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是一款开源的错误跟踪系统,广泛用于软件开发中的缺陷管理。本指南将详细讲解在Windows XP Professional系统上,利用Apache服务器进行Bugzilla的安装过程,以及解决可能出现的问题。 ...
根据给定的文件信息,以下是对“Bugzilla安装文档”中的关键知识点的详细解析: ### Bugzilla安装环境 #### 操作系统与软件需求 - **操作系统**:Fedoracore6,选择此版本的原因可能在于其稳定性和社区支持。 - **...
winXP下的bugzilla安装,配置IIS服务器
### Bugzilla在Windows环境下的安装教程 #### 一、前言 Bugzilla是一款非常流行的开源缺陷跟踪系统,广泛应用于软件开发团队中进行错误追踪与管理。对于希望在Windows环境下搭建Bugzilla系统的用户而言,本教程提供...