JIRA Installation Summary

Source: Internet
Author: User

JIRA is a J2EE-based problem tracking management system developed by www.atlassian.com. It is called the bugzilla of J2EE.

Many of the open-source workflow engines we have learned use Jira for problem tracking.

Download

JIRA Web site: http://www.atlassian.com/software/jira

Register and log on, and select enterprise standalone 3.5 series to download. The name is similar to the following:

Atlassian-jira-enterprise-3.5.3-standalone

Atlassian-jira-enterprise-3.1-standalone

License:

1) Use the license for a trial. You can only use it for one month. 2) pay the license fee. 3) Open-source organizations use the license for free.

Related Software

Current System usage

JDK: Sun jdk1.4

MySQL database: mysql-4.0.20d-win.zip;

MySQL JDBC driver: mysql-connector-java-3.0.14-production-bin.jar;

Modify Database Configuration:

1) Version 3.1 is embedded with tomcat version 4.1. modify the configuration in the conf/server. xml file as follows. Pay special attention to the 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. basicperformancefactory </value>

</Parameter>

</Resourceparams>

2) version 3.5, with tomcat5.x. Modify the server. xml file as follows:

<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) modify the Atlassian-Jira/WEB-INF/classes/entityengine. xml file and change the database type to MySQL.

<Datasource name = "defaultds" field-type-name = "MySQL"

4) copy the database driver mysql-connector-java-3.0.14-production-bin.jar to the common/lib directory.

 

5) Run Tomcat and access http: // localhost: 8080.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.