Start Jira applications automatically in Linux

要約

This article discusses the steps needed to start Jira applications automatically in Linux 

Linux/Solaris のシステム管理は、アトラシアンのサポート対象外です。本ページはあくまで情報提供のみを目的としています。

How to identify whether the OS is utilizing systemd or SysVinit:

Both systemd and SysVinit always has process ID of "1", run the following to show the process details:

ps --no-headers -o comm 1

SysVinit example:

[root@test ~]#  ps --no-headers -o comm 1
init

systemd example:

[root@test ~]#  ps --no-headers -o comm 1
systemd

For Linux distributions that are utilizing systemd (such as RHEL 7 or later) instead of SysVinit, refer to this page instead.

ソリューション

Linux/Solaris におけるベストプラクティスは、必要な権限のみを持つ専用ユーザとして各サービス (JIRA を含む) のインストール、構成および実行を行う事です。

Linux/Solaris における JIRA のインストール、構成、および自動的な起動方法:

  1. Create a jira user account which will be used to run JIRA. For example, enter the following at a Linux/Solaris console:

    sudo useradd --create-home -c "JIRA role account" jira
  2. JIRA がインストールされるディレクトリを作成します。例:

    sudo mkdir /opt/atlassian/jira
    sudo chown jira: /opt/atlassian/jira
    
  3. Log in as the jira user to install JIRA:

    sudo su - jira
    
  4. Assuming you downloaded the Jira from a 'tar.gz'archive, you need to extract it:

    cd /opt/atlassian/jira
    tar zxvf /tmp/atlassian-jira-X.Y.tar.gz
    ln -s atlassian-jira-X.Y/ current
    
  5. Edit current/atlassian-jira/WEB-INF/classes/jira-application.properties and set jira.home=/var/atlassian/application-data/Jira
  6. In case your Linux distribution uses Systemd (almost all of them at this point), skip the steps below and refer to Run Jira as a systemd service on linux.
  7. Then back as root, create the file /etc/init.d/jira (code shown below), which will be responsible for starting up JIRA after a reboot (or when manually invoked).

    #!/bin/sh -e
    # JIRA startup script
    #chkconfig: 2345 80 05
    #description: JIRA
    
    # Define some variables
    # Name of app ( JIRA, Confluence, etc )
    APP=jira
    # Name of the user to run as
    USER=jira
    # Location of application's bin directory
    BASE=/opt/atlassian/jira/current
    # Location of Java JDK
    export JAVA_HOME=/usr/lib/jvm/java-6-sun
    
    case "$1" in
      # Start command
      start)
        echo "Starting $APP"
        /bin/su -m $USER -c "cd $BASE/logs && $BASE/bin/start-jira.sh &> /dev/null"
        ;;
      # Stop command
      stop)
        echo "Stopping $APP"
        /bin/su -m $USER -c "$BASE/bin/stop-jira.sh &> /dev/null"
        echo "$APP stopped successfully"
        ;;
       # Restart command
       restart)
            $0 stop
            sleep 5
            $0 start
            ;;
      *)
        echo "Usage: /etc/init.d/$APP {start|restart|stop}"
        exit 1
        ;;
    esac
    
    exit 0
    
    
  8. 初期化スクリプトを実行可能にします:

    chmod \+x /etc/init.d/jira
  9. シンボリックリンクをランレベルのディレクトリに配置し、このスクリプトの開始と停止を自動的に行えるようにします。

    1. Debian ベースのシステムの場合:

      update-rc.d jira defaults

      上記のコマンドを実行する事で、シンボリックリンクをランレベルのディレクトリに配置します:

      Adding system startup for /etc/init.d/jira ...
         /etc/rc0.d/K20jira -> ../init.d/jira
         /etc/rc1.d/K20jira -> ../init.d/jira
         /etc/rc6.d/K20jira -> ../init.d/jira
         /etc/rc2.d/S20jira -> ../init.d/jira
         /etc/rc3.d/S20jira -> ../init.d/jira
         /etc/rc4.d/S20jira -> ../init.d/jira
         /etc/rc5.d/S20jira -> ../init.d/jira
      
    2. RedHat ベースのシステムの場合:

      tip/resting Created with Sketch.

      init.d スクリプトに chkconfig 設定が含まれています

      sudo /sbin/chkconfig --add jira
  10. スクリプトが正しい順序で実行されるようにします (特にデータベースの起動スクリプトの後に実行されるように)。

情報を提供して頂きありがとうございました

Thank you to Matthew Block and Pete Toscano for the original comments that we based this information on.

Last modified on Mar 28, 2025

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.