查看完整版本: JIRA的搭建及其与subversion的集成

港湾 2006-12-25 13:51

JIRA的搭建及其与subversion的集成

JIRA的搭建及其与subversion的集成
一、        JIRA介绍
1、        介绍:先看看JIRA官方网站对jira的定位:JIRA is a bug tracking, issue tracking, and project management application developed to make this process easier for your team.可见,jira除了除了常规bug追踪系统的bug tracking功能外还包含了issue tracking,project management等强大功能。
2、        相关资源:
官方网站[url=http://www.atlassian.com/]http://www.atlassian.com/[/url]
官方文档[url=http://www.atlassian.com/software/jira/docs/latest/install.html]http://www.atlassian.com/software/jira/docs/latest/install.html[/url]
中国代理商网站[url=http://www.czsm.com.cn/]http://www.czsm.com.cn/[/url](号称是官方代理商)
破解方法:涉及知识产权,确实需要请联系我:msn: [email protected]

二、        JIRA的安装(Linux下)
1、        下载
JIRA当前最新版本是3.6.5,JIRA有Standard, Professional and Enterprise三种版本,发布包有Standalone(Bundled with an application server and database, the standalone distribution runs out of the box.)和WAR/EAR(Deployable as a WAR or EAR inside any J2EE application server or servlet container.)两种,官方推荐下载standalone,所以本文我们以当前最新版本enterprise-3.6.5-standalone为例,下载地址:[url=http://downloads.atlassian.com/software/jira/downloads/atlassian-jira-enterprise-3.6.5-standalone.tar.gz]http://downloads.atlassian.com/software/jira/downloads/atlassian-jira-enterprise-3.6.5-standalone.tar.gz[/url],下载之前要你先注册,注册后就可以下载了,下载完成后点击View your license keys可以获得你的体验版的key(可以使用一个月)
2、        安装:
1)        安装jdk并设置环境变量(如果已经安装请跳过)
./jdk-1_5_0_03-linux-i586-rpm.bin(假设安装这个版本)
一段声明后输入yes即开始安装,默认安装在/usr/java/jdk1.5.0_03下
接下来设置环境变量:
vi /etc/profile在expore PATH 前面加上如下三行
JAVA_HOME= /usr/java/jdk1.5.0_03
PATH=$PATH:$JAVA_HOME/bin
Expore JAVA_HOME
保存退出(linux技巧:按esc键后按shift+ZZ即可快速保存退出)后
Source /etc/profile使配置立即生效

2)        解压:把下载后的文件拷到/usr/local(linux技巧:人们都习惯把软件安装在/usr/local下,该目录相当于windows的program files目录)目录下
cd /usr/local
tar zxvf  atlassian-jira-enterprise-3.6.5-standalone.tar.gz(linux技巧:敲完atlassian后按tab键会自动补齐后面的字符串)
3)        安装
cd atlassian-jira-enterprise-3.6.5-standalone
cd bin
./startup.sh
4)        配置
打开浏览器,访问你装jira的那台机器,假如是192.168.16.156,那么访问192.168.16.156:8080,那么你会打开如下配置页面,总共有3步,按照里面的配置即可。配置完成后

5)        测试
最后,你在你的浏览器输入192.168.16.156:8080,就可以看到JIRA的登录界面,OK,至此你已经搭建好一个可以用的bug追踪系统了!

三、        JIRA与subversion的集成
Quick Install Instructions
--------------------------
1. Copy into JIRA's WEB-INF/lib (removing any existing older versions):
- lib/atlassian-subversion-plugin-0.9.4.jar
- lib/javasvn-*.jar
- lib/ganymed.jar (only used if you are using ssh authentication for your subversion repository)

2. Edit for your installation:
- subversion-jira-plugin.properties

NOTE: Multiple Subversion repositories are supported. You can specify a default repository (svn.root = {svn root},
etc...) and additional repositories with: svn.root.1=..., svn.root.2=..., and so on. If you do not specify the username,
password, view url, revision indexing, and revision indexing cache size for you additional repository entries then the
values will be taken from your default repository entry (in this way you do not need to copy username and password over
and over if they are the same).

3. Copy into JIRA's WEB-INF/classes
- subversion-jira-plugin.properties

4. If you are upgrading from an older version of the plugin, please delete the Subversion index directory
($jira's_index_dir}/plugins/atlassian-subversion-revisions/). The plugin will recreate it when its service first runs.

5. Restart JIRA - whew, you're done! :)
If you are using JIRA Standalone you can copy the files under the atlassian-jira sub-directory. That is, the jar files into
atlassian-jira/WEB-INF/lib and the .properties file into atlassian-jira/WEB-INF/classes.

If using the WAR distribution, create the directory edit-webapp/WEB-INF/lib and copy the jar files into it. Then copy the
.properties file into edit-webapp/WEB-INF/classes and rebuild and redeploy the JIRA war file.

(note: the first time the service runs it will take a while to index all of your existing issues - be patient)
四、        JIRA与mysql等数据库的集成
五、        JIRA晋阶
六、        参考资料:

港湾 2006-12-25 14:01

本文先详细介绍了jira的安装,与subversion的集成就偷懒,用官方文档的了。如果有必要,我会写详细一点的。后面的
四、        JIRA与mysql等数据库的集成
五、        JIRA晋阶

就等有时间再写吧!

近期老大突然给我开了一个subversion 集成的板块,要我写点东西。真的任重道远啊~今天开始写一点点,发现写作实在不是

我的强项啊,有些东西现场演示一下,或者说一下也许很简单,却不知道该如何用文字表达出来,咳~!

rocksun 2006-12-25 14:24

呵呵,不错阿

中国人的思维方式不善于归纳总结,所以我们更应该好好学习,东西能写出来,说明你的理解更深刻了。

huixiang 2007-7-19 10:12

写一下在linux下svn与jira的集成步骤吧,我现在配置了linux+apache+jira3.9.3 ,可是下载了atlassian-jira-subversion-plugin-0.9.10.zip 安装后在jira里没有集成进svn.急!

bcde482 2009-8-4 11:33

足球比分直播

[url=http://www.win108.com/][size=3][color=red][b][i]足球比分直播[/i][/b][/color][/size][/url]
nba大小球,庄家的控盘,[url=http://www.win108.com/][size=3][color=blue][b][i]足球比分[/i][/b][/color][/size][/url]达到出神入化的地步,是足球所无法比拟的。精确到0.5分的控盘,让人觉得,这些球员的大脑是不是电脑控制的个人在投注nba大小球的时候,[url=http://www.win108.com/][size=3][color=blue][b][i]比分直播[/i][/b][/color][/size][/url]有如下经验,希望可以跟大家分享:如果你选择全场小球如果你选择全场小球,你可以选择投注上半场小球因为nba的最后一节,十分关键,总是会花样百出,很容易打出高分如果全场要小球,庄家一定要在上半场控出小球来,否则,[url=http://www.win108.com/][size=3][color=blue][b][i]足球比分[/i][/b][/color][/size][/url]下半场就没法控盘了个人下注,全场小球的,上半场小球几乎都正确还有几次,上半场小球,下半场风云突变,大了,判断错误,还逃过一劫如果你选择全场大球如果你选择全场大球,那就什么情况都有了,庄家好控的很,所以,[url=http://www.win108.com/][size=3][color=blue][b][i]比分直播[/i][/b][/color][/size][/url]只能乖乖投注全场大了,大家有什么经验,希望可以多多交流。

bcde423 2009-9-10 23:52

深圳美的空调售后服务 26087887 空调回收 空调维修 空调检测

[size=4][url=http://www.szmdfw.cn][b][color=blue]深圳美的空调售后服务[/color][/b][/url] 26087887 空调回收 空调维修 空调检测
公司承诺.
专业技术人员上门维修美的空调,按规定操作,做最好的深圳美的空调维修公司。 美的空调拆卸,美的空调安装.
专业提供各种品牌壁挂式美的空调、柜式美的空调、吸顶式美的空调的拆机安装、移机及相关服务,包括整体移机、单移室内机、单移室外机、打穿墙孔、整机清洗、加雪种等服务。另外:提供车辆运输(费用另付)
[url=http://www.szmdfw.cn][b]美的空调维修[/b][/url].
专业维修进口和国产壁挂式、柜式、吸顶式、窗式美的空调,包括对美的空调进行维修、维护、加雪种、清洗保养、补漏、改装电路板、配制各种型号、遥控器,批量检修等相关服务.
美的空调加雪种.
根据美的空调功率的大小,结合美的空调新旧程度、美的空调使用环境等因素,给美的空调加注适量的雪种。
[url=http://www.szmdfw.cn][b]美的空调清洗保养[/b][/url].
美的空调使用一段时间后,过滤器、蒸发器、冷凝器、水槽等在湿环境下会生细菌及有毒化合物,并产生异味,通过清洗能达到如下目的:1、提高制冷(热)效率 2、节省电能 3、增长美的空调寿命 4、[url=http://www.szmdfw.cn][b]预防美的空调病[/b][/url]
中央美的空调维修保养.
专业维修进口、国产品牌中央美的空调(家用、商用)风冷机组,水冷机组,包括维修、维护、清洗、保养、设计、安装、机组迁移等服务. [/size]

[size=4][b]深圳美的空调售后服务24小时热线[/b]:0755---26087887 [/size]
页: [1]
查看完整版本: JIRA的搭建及其与subversion的集成