Recently, due to project needs, it is necessary to build a software engineering management platform, and jira is preferred.
There are many tutorials on how to build jira on the Internet, but after a week of struggling, a completed jira service has not yet been built. But I finally figured out some ideas, and the jira service was finally successfully built.
1. Create two directories after entering the root directory of the server
The command is: mkdir /software
2. It is needed at this time after the file creation is completed. At this time we need to download the jira6.3.6 installation package from the Internet and unzip it
First enter the /software directoryCommand: wget http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-6.3.6.tar.gz
After downloading: Unzip
Command: tar -xvf atlassian-jira-6.3.6.tar.gz
3. Modify configuration
Enter atlassian-jira-6.3.6-standalone/conf to view the sever.xml file and use vim to modify the port numberEnter atlassian-jira-6.3.6-standalone/atlassian-jira/WEB-INF/classes and use vim to modify the jirahome configuration file jira-application.properties(jirahome=/jiradata)
4. Install jvm environment and MySQL environment
After the jvm installation is completed, use Java -version to check whether it takes effect. If it does not take effect, you need to rebootSpecial note: jira6.3.6 supports jdk1.6 -jdk1.8. In the environment of jdk1.6 and jdk1.7, the jira service will automatically hang up after running for two or three hours. After analysis, it was found that the jvm has memory. leakage. The jdk version is relatively stable after changing to 1.8.
5. Enter /software/tlassian-jira-6.3.6-standalone/bin and start the jira service
Command: ./start-jira.sh
6. Enter the configuration page and select your own configuration
7, crack
At the end of the configuration, jira will prompt the user to enter the license. At this time, we choose to have no account or have an account but no licenseCrack: (1) Drop atlassian-extras-2.2.2.jar under the atlassian-jira-6.3.6-standalone/atlassian-jira/WEB-INF/classes/lib file
(2) Drop atlassian-universal-plugin-manager-plugin-2.17.13.jar in atlassian-jira-6.3.6-standalone/atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins
(3)) Drop atlassian-universal-plugin-manager-plugin-2.17.13.jar under /jiradata/plugins/installed-plugins
Restart the service and enter the cracked license
Fill in the authorization code. Examples of authorization code parameters are as follows:
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=The expiration date you want to set, such as: 2099-12-31,
Organisation=joiandjoin,
SEN=Please note that the SEN you applied for does not have the prefix LID,
ServerID=ServerID you applied for,
jira.NumberOfUsers=-1,
LicenseID=LID the SEN you applied for, be careful not to lose the LID prefix,
LicenseExpiryDate=The expiration date you want to set, such as: 2099-12-31,
PurchaseDate=Your installation date, format (yyyy-mm-dd)
For example:
The authorization code example for this installation is:
Description=JIRA: Commercial,
CreationDate=2014-09-20,
jira.LicenseEdition=ENTERPRISE,
Evaluation=false,
jira.LicenseTypeName=COMMERCIAL,
jira.active=true,
licenseVersion=2,
MaintenanceExpiryDate=2099-12-31,
Organisation=pl,
SEN=SEN-L4572897,
ServerID=BPT3-4QRK-FCRR-HDP3,
jira.NumberOfUsers=-1,
LicenseID=AAABBw0ODAoPeNptkFtLxDAQhd/zKwI R9Kwy66FPKxthGhvtF0p4kuso0a6sUwvuP/edissyj4MD
HPOfHOYqzu0tICWeoJy4a FzzkNwpIK7q1ICF2Ntu3tl5P3Ot89 1SNphnMPCEBwqkJTQ9y9jN w
zxBPi2a68jW4DpQr/a0rZJS5VmuC0XOBNnjAH/s5bGFxBxABmkcqzzQu2jRTd3bEZaFZvE AnYzR
JDYWNeDM64G9d1aPJ4TeXxOlOK7cbZbjrbNgkyGwwtg rbvJpBkHikAR0Adytt0XzFV7R5Y qQzV
kWZIoVK5FQsWq03YrvdkN/Ekz3S4SXlcpRswPrDdPD/aT P1nzDMC0CFQCM9 0LlHVNnZQnSTwuR
O3eK 2gVgIUCteTs4Q3khIgrnsY64hxYB/d8bM=X02dh,
LicenseExpiryDate=2099-12-31,
PurchaseDate=2014-09-20
8. Plug-in crack
Select the corresponding plug-in directly in the plug-in management, check the corresponding SEN, and update. The updated format is as followsDescription=JIRA Agile (formerly GreenHopper) for JIRA\: Commercial,
NumberOfUsers=-1,
CreationDate=2014-08-01,
Evaluation=false,
plugins.*.LicenseEdition=ENTERPRISE,
licenseVersion=2,
MaintenanceExpiryDate=2099-01-01,
Organisation=GoodCompany,
plugins.*.active=true,
SEN=SEN-L9374300,
ServerID=BMSW-8XXY-A06O-V5DH,
LicenseExpiryDate=2099-01-01,
LicenseTypeName=COMMERCIAL,
PurchaseDate=2014-08-01
You only need to modify the SEN and ServerID according to the template
Congratulations, your jira service has been successfully established!
The above is the detailed content of Detailed explanation of how to build Jira service version 6.3.6 on CentOS 7. For more information, please follow other related articles on the PHP Chinese website!