How to install tracking tool jira

  
in Linux

jira is a project and transaction tracking tool, which can be used for task tracking, customer service, etc. It is widely used all over the world. The following small series will introduce you to the steps of installing jira in Linux. Interested Friends may wish to find out.

Step:

Step 1: Install jdk

1. jdk downloaded from the official website of the installation package

2. The mounting jdk The package is uploaded to the virtual machine or server: scp file name (jdk-7u17-linux-x64.tar.gz) root@ virtual machine or server to be transmitted (210.56.194.45)

3. at , /usr Create a java directory under the /local/directory: mkdir java

4. Copy the file to the java directory below: cp file name (jdk-7u17-linux-x64.tar.gz) /usr/local/java

5. Unzip the file: first extract it. Tar file: gzip -d file name (jdk-7u17-linux-x64.tar.gz) is extracted into executable file: tar -xvf file name (jdk-7u17-linux-x64.tar)

6. Configure the running environment of jdk:

Enter vi /etc/profile to open the file and add the following content

JAVA_HOME=/usr/local/java/jdk1.7.0_17

CLASSPATH=$JAVA_HOME/lib:$JAVA_HOME/jre/lib

PATH=$PATH:$JAVA_HOME/bin:$JAVA_HOME/jre/bin

export PATH CLASSPATH JAVA_HOME

7. Logout logout

8.echo $JAVA_HOME verify java path

Step 2: Install mysql

1. Download the mysql installation package from the official website

2 Upload the mysql installation package to the virtual machine or server: scp file name (mysql installation package) root@ virtual machine or server to be transferred (210.56.194.45)

3. Direct yum install mysql* installation Mysql

4. After the installation is complete /etc/init.d/mysqld start Start mysql

5.show databases Verify the success of mysql

Step 3: Install tomcat< Br>

1. Download the tomcat installation package from the official website

2. Upload the jdk installation package to the virtual machine or server: scp file name (apache-tomcat-6.0.20.tar.gz) Root@ virtual machine or server to be transmitted (210.56.194.45)

3. Create a tomcat directory under the /usr/local/directory: mkdir tomcat

4. Copy the file to Tomcat directory below: cp file name (apache-tomcat-6.0.20.tar.gz) /usr/local/tomcat

5. Extract the file: first extract it. Tar file: gzip -d file name (apache-tomcat-6.0.20.tar.gz) is extracted into executable file: tar -xvf file name (apache-tomcat-6.0.20.tar)

6. Start tomcat: /usr/local/tomcat/tomcat/bin/startup.sh will output the following:

[root@liaidong ~]# /usr/local/tomcat/tomcat/bin/startup. Sh

Using CATALINA_BASE: /usr/local/tomcat/tomcat

Using CATALINA_HOME: /usr/local/tomcat/tomcat

Using CATALINA_TMPDIR: /usr/local/tomcat /tomcat/temp

Using JRE_HOME: /usr/local/java/jdk1.7.0_17
Previous12Next Total 2 Pages

Copyright © Windows knowledge All Rights Reserved