Search Results for 'jira'

1 POSTS

  1. 2012.08.09 JIRA5 설치[1/2] Linux에 install 하기.

JIRA 평가판 최신버전(5.1.2)을 다운받아서 설치해 봤습니다. 리눅스(CentOS 5.x에)

JIRA를 설치하려면 우선 JDK를 다운받아서 설치해야 합니다. 해당 서버에 맞는 JDK를 다운받습니다.

wget http://download.oracle.com/otn-pub/java/jdk/7u3-b04/jdk-7u3-linux-x64.rpm

rpm -ivh jdk-7u3-linux-x64.rpm


/etc/profile 에 다음의 내용을 추가합니다.

.... 

pathmunge /usr/java/default/bin

pathmunge /wecon/cassandra/bin

export JAVA_HOME="/usr/java/default"

....

unset i

unset pathmunge


서버를 재부팅 해줍니다.

vi /etc/profile 에 다음의 내용을 추가합니다.


JIRA를 다운받습니다.

다운받은 bin 파일에 실행권한을 부여합니다.

chmod +x atlassian-jira-5.1.2-x64.bin


[root@jira ~]# ./atlassian-jira-5.1.2-x64.bin 

Unpacking JRE ...

Starting Installer ...



jara를 설치할꺼라고 합니다. o와 enter를 쳐줍니다.

This will install JIRA 5.1.2 on your computer.

OK [o, Enter], Cancel [c]


설치유형을 선택하라고 합니다.

Choose the appropriate installation or upgrade option.

Please choose one of the following:

Express Install (use default settings) [1], Custom Install (recommended for advanced users) [2, Enter], Upgrade an existing JIRA installation [3]


advanced users가 아니면서도 2번을 선택했습니다.

디렉토리를 선택하는 아니 지정하라고 하는 내용입니다. /home 밑으로 생성했습니다. 찾기가 좋을듯 해서...

Where should JIRA 5.1.2 be installed?

[/opt/atlassian/jira]

/home/atlassian/jira


jira 데이터를 저장할 디렉토리를 지정하라고 합니다.

Default location for JIRA data

[/var/atlassian/application-data/jira]

/home/atlassian/jira/data

위와 같이 입력하면 다음과 같이 안된다는 내용의 메시지가 나옵니다. jira홈디렉토리는 data디텍토리로 사용할수 없도록 합니다.

이유는 잘 모르겠지만 문제의 소지가 있어서 그런듯 합니다.

The home directory cannot be a sub-directory of the installation directory. Please use another location.

Default location for JIRA data

[/home/atlassian/jira/data]

/home/atlassian/jira_data


jira를 서비스하기 위한 Port를 지정하라는 질문이 나옵니다.

Configure which ports JIRA will use.

JIRA requires two TCP ports that are not being used by any other

applications on this machine. The HTTP port is where you will access JIRA

through your browser. The Control port is used to Startup and Shutdown JIRA.

Use default ports (HTTP: 8080, Control: 8005) - Recommended [1, Enter], Set custom value for HTTP and Control ports [2]

1

톰캣의 8080과 중복될수도 있으나 일단 디폭트로 지정합니다.


JIRA can be run in the background.

You may choose to run JIRA as a service, which means it will start

automatically whenever the computer restarts.

Install JIRA as Service?

Yes [y, Enter], No [n]

y


Extracting files ...

백그라운드 서비스로 지정할꺼냐고 묻습니다. yes

이후 파일들의 압축이 풀립니다.


Please wait a few moments while JIRA starts up.

Launching JIRA ...

Installation of JIRA 5.1.2 is complete

Your installation of JIRA 5.1.2 is now ready and can be accessed via your

browser.

JIRA 5.1.2 can be accessed at http://localhost:8080

Finishing installation ...

그리고는 어마있어 위와 같은 메시지와 함께 설치가 마무리 됩니다.


이제 브라우져를 열고 해당 아이피:8080 으로 접속하여 Configuration을 잡습니다.

Configuration에 대한 내용은 다음포스팅으로 넘깁니다.