According to the task of their superiors to refer to the Jira Baidu document construction, to facilitate the company's Test personnel project management below is my installation steps.
1. Pre-installation preparation;
Server: centos6.5 System
Jira installation package: Atlassian-jira-6.3.6.tar
Installation Environment: jdk1.8.03
Database: MySQL Database
2.JDK installation;
I've already written this in my last article, and I can refer to http://11432799.blog.51cto.com/11422799/1761445.
3.mysql database installation;
The installation of this database centos6.5 can be installed directly yum install-y mysql* (I remember to learn when I heard a word: can escape lazy never to trouble, hehe!) Be sure to ensure that the database is of type InnoDB when the database is installed. And then build the user empowerment right here is not to say.
4jira installation;
The installation package can be downloaded under the cloud disk here I give a connection: Http://pan.baidu.com/s/1kVIoWTL, version is Atlassian-jira-6.3.6.tar
Tar zxvf Atlassian-jira-6.3.6.tar
MV Atlassian-jira-6.3.6-standalone Jira
Modify Jira_home
Vim/home/jira/atlassian-jira/web-inf/classes/jira-application.properties
Jira.home = your Address
The installation is complete here, but you need to modify the configuration file Server.xml add the following lines of code (refer to the details of the web where to forget ...) ):
<resource name= "Jdbc/jirads" auth= "Container" type= "Javax.sql.DataSource"
Username= "[Jira]" #你的数据库的用户名
Password= "[Jira]" #你的数据库的用户密码
Driverclassname= "Com.mysql.jdbc.Driver"
Url= "Jdbc:mysql://localhost/jiradb?autoreconnect=true&useunicode=true&characterencoding=utf8"
/>
Check if the port number is occupied by the command;
Lsof-i: Port number
If it is used to modify the Server.xml in the 8005 port and 8080,8009 (generally the three ports modified to no use), there is no need to make changes, save exit.
4. Crack Jira;
Jira seemingly need to crack to use, in fact, as long as the replacement of two jar package can be:
Atlassian-extras-2.2.2.jar Replace the original jar package:/home/jira/atlassian-jira/web-inf/lib
Atlassian-universal-plugin-manager-plugin-2.17.13.jar Replace the original jar package:/home/jira/atlassian-jira/web-inf/ Atlassian-bundled-plugins
5. Chinese;
Jira itself does not have the Chinese need to download the Chinese package Jira-6.3.3-language-pack-zh_cn.jar put to/home/jira/atlassian-jira/web-inf/lib/under the line
6. Start up;
All of the above will be ready to start, start the command:./startup.sh
7. Access;
http://ip+ Port number
Note:
Some need to install a MySQL driver package when installing MySQL: Mysql-connector-java-5.1.6-bin.jar put it in:/home/jira/lib.
Above the crack package and drive package can go to Cloud disk: Http://pan.baidu.com/s/1miALxRa Download (arduous to find, exhausted baby!) Of course, look for the free! )
Installation of the Web interface here is not to say step by step walk on the line.
Install Jira under Linux