CentOS 6.5 under Jira installation deployment

Source: Internet
Author: User

Jira Introduction:

JIRA: Professional defect tracking and project management software

Jira is a project tracking management tool that helps teams create scheduled tasks, build and publish good products. Thousands of teams around the world choose Jira, use Jira to capture, organize, manage defects, assign tasks, and track team activities. Whether it's on a desktop PC or a mobile device, the Jira works perfectly and helps the team get the job done.

More introductions here are not listed in detail; http://www.unlimax.com/jira.html and http://www.confluence.cn

CentOS 6.5 Installation Configuration Jira, confluence integrated environment http://www.linuxidc.com/Linux/2014-07/104406.htm

CentOS 5.3 Installation configuration Jira and confluence http://www.linuxidc.com/Linux/2011-03/33594.htm

Environment Introduction:

System: CentOS 6.5

Jdk:jdk-7u60-ea-bin-b15-linux-x64-16_apr_2014.tar.gz

Mysql:mysql-5.5.33-linux2.6-x86_64.tar.gz

Jira:atlassian-jira-6.0.3.tar.gz

First, install the JDK

1. Unzip the JDK

[Email protected] jira]# TAR-ZXF jdk-7u60-ea-bin-b15-linux-x64-16_apr_2014.tar.gz-c/usr/local/

2. Create a soft connection to append the JDK to the bin:

[Email protected] bin]# cd/usr/bin/

[Email protected] bin]# ln-s-f/usr/local/jdk1.7.0_60/jre/bin/java

[Email protected] bin]# ln-s-f/usr/local/jdk1.7.0_60/bin/javac

3. Configure the JDK environment:

[Email protected] bin]# Vim/etc/profile

[Email protected] bin]# tail-5/etc/profile

#jdk

Export java_home=/usr/local/jdk1.7.0_60

Export Java_bin=/usr/local/jdk1.7.0_60/bin

Export path= $PATH: $JAVA _home/bin

Export classpath=.: $JAVA _home/lib/dt.jar: $JAVA _home/lib/tools.jar

4. See if the configuration is successful:

[Email protected] bin]# java-version

Java version "1.7.0_60-ea" #版本正确

Java (TM) SE Runtime Environment (build 1.7.0_60-ea-b15)

Java HotSpot (TM) 64-bit Server VM (build 24.60-b09, Mixed mode)

Second, install MySQL:

1. Create User:

[[email protected] jira]# groupadd-g 306 MySQL

[Email protected] jira]# useradd-g mysql-u 306-r MySQL

2. Create Data directory:

[Email protected] jira]# Mkdir-pv/mydata/data

3. Change Data Directory permissions:

[Email protected] jira]# chown-r mysql.mysql/mydata/data

4. Unzip MySQL

[Email protected] jira]# TAR-ZXF mysql-5.5.33-linux2.6-x86_64.tar.gz-c/usr/local/

5. Create a link:

[Email protected] local]# LN-SV mysql-5.5.33-linux2.6-x86_64/mysql

6, the change belongs to the main group:

[[Email protected] local]# CD MySQL

[Email protected] mysql]# chown-r root:mysql./*

7. Initialize MySQL

[Email protected] mysql]# scripts/mysql_install_db--user=mysql--datadir=/mydata/data

8. Create a startup script and empower:

[email protected] mysql]# CP support-files/mysql.server/etc/rc.d/init.d/mysqld

[Email protected] mysql]# chmod +x/etc/rc.d/init.d/mysqld

9. Create and modify the configuration file:

[email protected] mysql]# CP support-files/my-large.cnf/etc/my.cnf

[Email protected] mysql]# VIM/ETC/MY.CNF

Add the following line to specify where the MySQL data file is stored: DataDir =/mydata/data

10. Change the Environment variables:

[Email protected] mysql]# vim/etc/profile.d/mysql.sh

[Email protected] mysql]# cat/etc/profile.d/mysql.sh

Export Path=/usr/local/mysql/bin: $PATH Add this line

[Email protected] mysql]#. /etc/profile.d/mysql.sh

11. Start the MySQL server:

[[Email protected] mysql]# service mysqld start

Third, configure MySQL database:

To create a database:

mysql> CREATE DATABASE jira DEFAULT CHARACTER SET UTF8 COLLATE utf8_general_ci;

To grant access to the secondary database:

Mysql> grant all privileges in jira.* to [e-mail protected] ' 192.168.100.% ' identified by ' jira123 ';

mysql> flush Privileges;

Iv. installation Configuration Jira server:

1, decompression Jira:

[Email protected] jira]# TAR-ZXF atlassian-jira-6.0.3.tar.gz-c/usr/local/

[Email protected] local]# MV Atlassian-jira-6.0.3-standalone/jira

2. Create the Jira installation directory:

[Email protected] jira]# mkdir jira_home

[Email protected] jira]# vim atlassian-jira/web-inf/classes/jira-application.properties

[email protected] jira]# cat atlassian-jira/web-inf/classes/jira-application.properties

Jira.home =/usr/local/jira/jira_home

3, it is understood that Jira does not support MySQL, so need to add MySQL module

[Email protected] bin]# pwd

/usr/local/jira/bin

[Email protected] bin]# Cp/root/jira/mysql-connector-java-5.0.3-bin.jar.

4. Start the Jira server:

[Email protected] bin]# pwd

/usr/local/jira/bin

[Email protected] bin]#./startup.sh


5. View port: Default binding 8080 Port

[Email protected] bin]# SS-TANLP

State recv-q send-q Local address:port Peer address:port

LISTEN 0::: 8080:::* Users: ((" Java ", 4432,52))

LISTEN 0::: +:::* Users: ((" Sshd ", 1100,4))

LISTEN 0 *:22 *:* Users: (("SS HD ", 1100, 3))

LISTEN 0:: 1:25:::* Users: (("M Aster ", 1176,13))

LISTEN 0 127.0.0.1:25 *:* Users: (("Ma Ster ", 1176,12))

LISTEN 0 127.0.0.1:6010 *:* Users: (("SS HD ", 1215,8))

LISTEN 0:: 1:6010:::* Users: ("s SHD ", 1215,7))

LISTEN 0 127.0.0.1:6011 *:* Users: (("SS HD ", 1259,8))

LISTEN 0:: 1:6011:::* Users: ("s SHD ", 1259,7))

LISTEN 0 *:3306 *:* Users: (("M Ysqld ", 3912,11))

6, Installation Jira

Enter the IP address in the browser port is 8080 access Jira

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506191741.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

7. Select connection, set up MySQL connection

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506219484.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

8. Test Connection

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506219041.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

9. Fill in setting up personal information

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506217822.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

10, commercial version, enter the authorization key

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506215413.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

11. Create a super user who manages Jira

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506214895.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

12. Set up mailbox notifications

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506216936.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

13, set the success, login Jira interface

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506222185.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

14. Add Plugin--Add Chinese plugin

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506228412.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506223569.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>650) this.width=650; "Src=" http://www.linuxidc.com/upload/2014_08/ 14081506225856.jpg "alt=" CentOS 6.5 under Jira installation Deployment "align=" Middle "/>650" this.width=650; "src=" http://www.linuxidc.com /upload/2014_08/14081506224780.jpg "alt=" CentOS 6.5 under Jira installation Deployment "align=" Middle "/>650" this.width=650; "src=" http:// Www.linuxidc.com/upload/2014_08/14081506235077.jpg "alt=" CentOS 6.5 under Jira installation Deployment "align=" Middle "vspace=" 5 "width=" 581 " />

15. Add complete, refresh page or clear cache Refresh page

650) this.width=650; "src=" http://www.linuxidc.com/upload/2014_08/14081506233554.jpg "alt=" CentOS 6.5 Jira Installation Deployment " Align= "Middle" vspace= "5" width= "581"/>

At this point, the installation and deployment of Jira completed, in fact, very simple, the maintenance of the latter and two times development is the focus. A lot of communication. Thank you

JIRA Details : please click here
JIRA : please click here.


This article from "My Sky" blog, declined reprint!

CentOS 6.5 under Jira installation deployment

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.