centos에 atlassian confluence를 설치하는 방법이다.
centos 6.4 64bit 기준이다.
1 java 설치
http://java.com/ko/download/manual.jsp
자신의 환경에 맞는 jre 다운
# rpm -ivh jre-7u25-linux-x64.rpm
# vi /etc/profile.d/java.sh
export JAVA_HOME=/usr/java/jre1.7.0_25 (jre 설치한 경로)
export J2RE_HOME=/usr/java/jre1.7.0_25
export PATH=$JAVA_HOME/bin:$PATH
2 mysql 설치(설치방법 생략)
- mysql 암호 지정
# mysqladmin -u root password 'password' (mysql 구동안하고 명령어치면 에러가 뜬다)
- 데이터베이스 생성
# mysql -u root -p
mysql> create database confluence character set utf8 COLLATE utf8_bin;; >
* 삭제는 drop database confluence;
* 생성확인은 show databases;
mysql> grant all privileges on confluence.* to confluence@localhost identified by 'PASSWORD' with grant option;
mysql> flush privileges;
mysql> quit
- mysql 환경 설정
# vi /etc/my.cnf
자신의 환경에 맞게 수정하자
3 계정 생성
# useradd confluence
드디어 접속이 됐다.
라이센스가 필요하다.
generate an evaluation license online 을 눌러서 라이센스를 받도록 하자
direct jdbc connection 클릭
아까 mysql 설정했던 아이디와 암호를 입력한다.
시간이 꽤 오래걸린다.
자신이 원하는 셋팅으로 선택하자.
계정 생성
이러면 모든 설치가 완료가 된다.
'atlassian_confluence_jira' 카테고리의 다른 글
confluence http status 404 error (0) | 2013.09.02 |
---|---|
Confluence will not start up because the build number in the home directory (0) | 2013.08.30 |
ERROR 1153 (08S01) at line 1593: Got a packet bigger than 'max_allowed_packet' bytes (0) | 2013.08.30 |
confluence backup & restore (0) | 2013.08.30 |
confluence mysql could not find driver with class name: com.mysql.jdbc.Driver (0) | 2013.08.30 |