Devops_CICD/Jira2020. 8. 19. 17:45

Install Jira On Centos7

 

JIRA is a issue tracking product, It is used for bug tracking, issue tracking, and project management system. In this blog, I will explain that how to install and configure latest version of JIRA on a Centos.This blog will help you to configure a JIRA with MySQL.

 

Requirement

JIRA require at least 1GB of RAM. If you not use a swap file, I recommend over 2GB of RAM.root privileges

JAVA software package is require for JIRA establishment. First. You need to install the java software package “java-1.8.0-openjdk-devel “on your centos server.

yum list java*jdk-devel

yum install -y java-1.8.0-openjdk-devel.x86_64

ls -l /usr/bin/javac

/usr/bin/javac -> /etc/alternatives/javac

ls -l /etc/alternatives/javac

/etc/alternatives/javac -> /usr/lib/jvm/java-1.8.0/bin/javac

 

alternatives --config java

alternatives --config javac

java -version

 

# Set JAVA_HOME environment variable.

echo "export JAVA_HOME=/usr/lib/jvm/java-1.8.0" >> ~/.bashrc

echo "PATH=$PATH:$JAVA_HOME/bin:$HOME/bin" >> ~/.bashrc

echo "export PATH" >> ~/.bashrc

 

source ~/.bashrc

env | grep JAVA

JAVA_HOME=/usr/lib/jvm/java-1.8.0

To install Jira on CentOS, please refer the following steps:

You need to download the latest JIRA Installer (.bin) file from the JIRA official page or given link to directory /opt

https://www.atlassian.com/ko/software/jira/update

cd /opt

wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-7.3.0-x64.bin

 

wget https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.5.6-x64.bin

After that, give the execute permission to .bin file and install JIRA.

#chmod +x atlassian-jira-software-7.3.0-x64.bin

#./atlassian-jira-software-7.3.0-x64.bin

 

Installation Directory: /opt/atlassian/jira

Home Directory: /var/atlassian/application-data/jira

HTTP Port: 8080

RMI Port: 8005

## Add the firewall rules

firewall-cmd --permanent --add-service=http

firewall-cmd --permanent --add-port={8080,8005}/tcp

firewall-cmd --reload

After you successful installation Jira, login URL is displayed and use it to login

http://server-ip:8080

or http://server-hostname:8080

To connect JIRA with MySQL, you need to copy the MySQL JDBC driver to your Jira server. Also, Copy the MySQL JDBC driver jar file to the JIRA installation directory /opt/atlassian/jira/lib/ . Also create a database and new user for JIRA.Also, you give the full permission for JIRA mysql user.

 

To configure the MySQL database

To create a database user for JIRA using following command:

#mysql -u root -p

 

   CREATE DATABASE jiradb CHARACTER SET utf8 COLLATE utf8_bin;

 

   grant all privileges on jiradb.* to 'jira'@'%' identified by 'syslint123!@#';

 

   flush privileges;

   exit

Copy the MySQL JDBC driver to your Jira server

After you installing the JIRA, you require MySQL Connector driver. You can download either the .tar.gz or the .zip file from official site. Otherwise, you can use the following command:

cd /opt

wget http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.35.tar.gz

 

# Extract the archive file

tar -zxvf mysql-connector-java-5.1.35.tar.gz

 

# Copy the MySQL JDBC driver jar file to the JIRA installation directory /opt/atlassian/jira/lib/

cd /opt/mysql-connector-java-5.1.35

cp mysql-connector-java-5.1.35-bin.jar /opt/atlassian/jira/lib/

To restart Jira Service

cd /opt/atlassian/jira/bin/

./shutdown.sh

./startup.sh

 

https://syslint.com/blog/tutorial/how-to-install-jira-on-centos/

https://confluence.atlassian.com/adminjiraserver071/installing-jira-applications-on-linux-802592173.html

https://confluence.atlassian.com/jirasoftware/jira-software-8-5-x-release-notes-975014654.html#JiraSoftware8.5.xreleasenotes-check

Posted by sonorous34