사전 준비
NFS 설정 - NFS 설정 참조
JIRA Software 설치 후 인스톨 폴더와 home 폴더를 서버 2번으로 복사
JIRA Software 서비스 중지
./stop-jira.sh
인스톨 폴더와 home 폴더 백업
cd /opt/atlassian/postgres tar cvf jira.tar jira cd /home/atlassian/postgres tar cvf jira-home.tar jira
백업한 두 파일을 JIRA Server2에 이동, JIRA Server1번과 동일한 위치에 압축해제
cd /opt/atlassian tar xvf jira.tar cd /home/atlassian tar xvf jira-home.tar
JIRA 서비스 실행하여 정상적으로 접속하는지 확인
압축해제 후 서비스만 실행하여 정상 실행 여부 확인
정상 접속 확인 후 서비스 중지
JIRA Data Center 설정
1. JIRA Server 1 설정
공유폴더에 아래 폴더 복사하여 이동
data, plugins, log, import, export, caches
cp -R /home/atlassian/postgres/jira/{data,plugins,log,import,export,caches} /data/jira
JIRA 홈디렉토리에 파일 생성 - 공유폴더와 node 아이디 설정
vi cluster.properties
# 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/jira
2. JIRA Server 2 설정
JIRA 홈디렉토리에 파일 생성 - 공유폴더와 node 아이디 설정
vi cluster.properties
# 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/jira
3. JIRA Server1 과 JIRA Server2 서비스 실행
JIRA Server1 서비스 시작
JIRA Server1 URL 접근하여 Data Center 라이선스 입력 후 서비스 재시작
JIRA Server2 서비스 시작
Add Comment