Home > English > Tutorials > How to install jira on centos (plan management web)

How to install jira on centos (plan management web)

 

 

I.Preparation

Install java , reference link here Click here  

Open port 8080 and port 3306

# nano /etc/sysconfig/iptables

Add these lines

-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

Restart iptables

# service iptables restart

Install mysql

# yum -y install mysql mysql-server

Run mysql together with the system

# chkconfig mysqld on 

Start mysql

# service mysqld start

Set a password for MySQL: root account

# mysql_secure_installation

These following sentence will appear 

Sentence 1 : Enter current password for root (enter for none) : just enter 

Sentence 2 : Set root password? [Y/n]select Y and enter your password 

Sentence 3 : Remove anonymous users? [Y/n] select Y

Sentence 4 : Disallow root login remotely? [Y/n] select Y 

Sentence 5 : Remove test database and access to it? [Y/n] select Y

Sentence 6 : Reload privilege tables now? [Y/n] select Y

II.Proceeding 

Visit jira homepage to sign up an account and download trial package for 30 days

http://atlassian.com 

Here we'll show you how to sign up

 

 

 

 

Check your email 

 

 

After signing up successfully, you start dowloading jira installation package

 

From this step you do it on ssh 

Creat a file named download

# mkdir /download

download jira package into the folder download by pasting the copied link 

# cd /download

# wget https://downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-7.1.1-jira-7.1.1-x64.bin 

To install file.bin, use the command chmod a+x <file.bin>

# chmod a+x atlassian-jira-software-7.1.1-jira-7.1.1-x64.bin

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

Installation of JIRA 7.1.1 software is now ready and can be accessed 

via your browser

JIRA Software 7.1.1 can be accessed at http: // ip-vps: 8080

Above is automatical installation. Here's handy installation

 

Enter license key or click on the word JIRA trial to ask for 90-day trial key 

 

Copy key to activate

 

Some images when the activation is complete