Original address: http://www.cnblogs.com/candle806/p/4095635.html
JIRA 6.3. Version 6 deployment
Deployment environment: Ubuntu Server, JDK1.7
Jira file: atlassian-jira-6.3.6.tar.gz: Baidu Cloud Network disk address Http://pan.baidu.com/s/1eQgTYKE
Mysql-jdbc:mysql-connector-java-5.1.25-bin.jar
Hack file: Version2licensedecoder.class licensemanager.class
Chinese Language pack: jira-6.3.3-language-pack-zh_cn.jar:http://download.csdn.net/download/mchdba/7943421
1, Configuration Jira
$ cd/opt
$ TAR-ZXVF atlassian-jira-6.3.6.tar.gz
$ chown-r Root:root atlassian-jira-6.3.6-standalone/
$ cd/opt
$ mkdir Jira_home
Configuring the Jira_home Path
$ vi/opt/atlassian-jira-6.3.6-standalone/atlassian-jira/web-inf/classes/jira-application.properties
Jira.home =/opt/jira_home
Put Mysql-jdbc (Mysql-connector-java-5.1.25-bin.jar) in/opt/atlassian-jira-6.3.6-standalone/atlassian-jira/web-inf/ Lib under
Create a Jira database
>> CREATE database Jira character set UTF8;
If there is a port conflict, you need to change the Jira service port
File directory/opt/atlassian-jira-6.3.6-standalone/conf/server.xml, modifying the startup and shutdown ports
Configuration Complete!
2. Start Jira
$ cd/opt/atlassian-jira-6.3.6-standalone/bin
$./start-jira.sh &//Start Jira and run in the background
Visit Jira http://localhost:8080/
Set up organization information according to the wizard, database connection information
Configure the Jira serial number, choose according to your own needs, if there is jira registered account, but no key, then choose to apply for an instant
Create administrator user information and configure email messages
$./stop-jira.sh//Stop Jira
3, crack
Jira after the installation is complete, close Jira, Then replace the two class files in Atlassian-extras-2.2.2.jar and Atlassian-universal-plugin-manager-plugin-2.17.13.jar
The core of the hack is to replace 2 license authentication classes
Com\atlassian\extras\decoder\v2\version2licensedecoder.class
Com\atlassian\license\licensemanager.class
These 2 classes exist in two packages at the same time and must all be replaced to:
installation directory for Jira/atlassian-jira/web-inf/lib/atlassian-extras-2.2.2.jar
installation directory for Jira/atlassian-jira/web-inf/atlassian-bundled-plugins/ Atlassian-universal-plugin-manager-plugin-2.17.13.jar
After the change is complete, the Jira and agile key files are modified and updated separately
JIRA Key Description:
description=jira:commercial,
creationdate= your installation date, format (YYYY-MM-DD),
JIRA. licenseedition=enterprise,
evaluation=false,
Jira. licensetypename=commercial,
jira.active=true,
licenseversion=2,
Maintenanceexpirydate= you want to set the expiration date such as: 2099-12-31,
Organisation= your company's organization name,
sen= you apply for sen,
Serverid= the serverid, you applied for;
Jira. numberofusers=-1,
Licenseid=lid the sen, you have applied for;
licenseexpirydate= you want to set the expiration date as: 2099-12-31,
Purchasedate= your installation date, format (YYYY-MM-DD)
Agile Key Description:
Description=jira Agile (formerly GreenHopper) for Jira\: commercial,
Numberofusers=-1,
Creationdate= your installation date, format (YYYY-MM-DD),
Evaluation=false,
GreenHopper. Licenseedition=enterprise,
licenseversion=2,
Maintenanceexpirydate= you want to set the expiration date as: 2099-12-31,
Organisation= your company's organization name,
Greenhopper.active=true,
Sen= The sen you applied to,
Serverid= you applied to the ServerID,
Licenseexpirydate= you want to set the expiration date as: 2099-12-31,
Licensetypename=commercial,
Purchasedate your installation date, format (YYYY-MM-DD)
Here Sen and ServerID is on the JIRA official web application information, fill in the correct.
After saving, if the expiry time is displayed as you set the expiration date as: 2099-12-31, it means OK
4. Chinese
Jira after the installation deployment is complete, after restarting the system, the administrator logs in, finds the plugin add On,upload, and selects Jira-6.3.3-language-pack-zh_ Cn.jar, observe the log if there is an error, if the error, restart Jira, re-upload the Chinese file
After the successful installation of the Chinese plug-in, find the Jira system configuration, select the Chinese configuration
JIRA 6.3. Version 6 deployment