Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

사전 준비

  1. NFS 설정 - NFS 설정 참조

  2. JIRA Software 설치 후 인스톨 폴더와 home 폴더를 서버 2번으로 복사

  • JIRA Software

...

  • JIRA Software 서비스 중지

Code Block
./stop-jira.sh

...

Code Block
cd /opt/atlassian/postgres
tar cvf jira.tar jira
cd /varhome/atlassian/application-datapostgres
tar cvf jira-home.tar jira-home
  • 백업한 두 파일을 JIRA Server2에 이동, JIRA Server1번과 동일한 위치에 압축해제

Code Block
cd /opt/atlassian
tar xvf jira.tar
cd /varhome/atlassian/application-data
tar xvf jira-home.tar
  • JIRA 서비스 실행하여 정상적으로 접속하는지 확인

    • 압축해제 후 서비스만 실행하여 정상 실행 여부 확인

    • 정상 접속 확인 후 서비스 중지

...

  • 공유폴더에 아래 폴더 복사하여 이동

    • data, plugins, logos, import, export, caches

Code Block
cp -R /varhome/atlassian/application-datapostgres/jira-home/{data,plugins,logos,import,export} /data/sharejira
  • JIRA 홈디렉토리에 파일 생성  - 공유폴더와 node 아이디 설정

...

Code Block
languageactionscript3
# This ID must be unique across the cluster
jira.node.id = node1
# The location of the shared home directory for all JIRA nodes
jira.shared.home = /data/sharejira

2. JIRA Server2 설정

  • JIRA 홈디렉토리에 파일 생성  - 공유폴더와 node 아이디 설정

...

Code Block
languageactionscript3
# This ID must be unique across the cluster
jira.node.id = node2
# The location of the shared home directory for all JIRA nodes
jira.shared.home = /data/sharejira

3. JIRA Server1 과 JIRA Server2 서비스 실행

...