JIRA安裝總結

來源:互聯網
上載者:User

JIRA是由www.atlassian.com開發的基於J2EE的問題跟蹤管理系統,它堪稱是J2EE的Bugzilla。

我們學習的很多開源的工作流程引擎的問題跟蹤就是用的JIRA。

下載

JIRA 開發商網址:http://www.atlassian.com/software/jira

註冊登陸,選擇Enterprise Standalone 3.5系列版本下載,名字類似於下面的:

atlassian-jira-enterprise-3.5.3-standalone

atlassian-jira-enterprise-3.1-standalone

LICENSE:

1)試用LICENSE ,只能用一個月   2)交費LICENSE   3)開源組織用的LICENSE是免費的。

相關軟體

當前系統使用

JDK:sun jdk1.4

Mysql資料庫:mysql-4.0.20d-win.zip ;

Mysql JDBC驅動:mysql-connector-java-3.0.14-production-bin.jar ;

修改資料庫配置:

1)  3.1版,內嵌 4.1版tomcat,修改conf/server.xml 檔案中的配置如下,尤其要注意URL。

<ResourceParams name="jdbc/JiraDS">

<parameter>

<name>driverClassName</name>

<value>com.mysql.jdbc.Driver</value>

</parameter>

<parameter>

<name>url</name><value>jdbc:mysql://localhost/jiradb?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=utf8</value>

</parameter>

<parameter>

<name>username</name>

<value>root</value>

</parameter>

<parameter>

<name>password</name>

<value></value>

</parameter>

<parameter>

<name>factory</name>

<value>org.apache.commons.dbcp.BasicDataSourceFactory</value>

</parameter>

</ResourceParams>

2)3.5版,用的tomcat5.X版,修改server.xml檔案如下:

<Resource name="jdbc/JiraDS" auth="Container" type="javax.sql.DataSource"
            username="root"
            password="123456"
            driverClassName="com.mysql.jdbc.Driver"
            url="jdbc:mysql://localhost:3306/jiradb?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=utf8"
            />

3)修改atlassian-jira/WEB-INF/classes/entityengine.xml 檔案,把資料庫類型改為mysql。

<datasource name="defaultDS" field-type-name="mysql"

4)複製資料庫驅動mysql-connector-java-3.0.14-production-bin.jar到 common/lib 目錄下面。

 

5)運行tomcat,訪問http://localhost:8080,就可以開始使用了。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.