2015. 1. 6. 11:35ㆍ아직미정
Redmine 설치 및 추가 설정
1. 아래 사이트에서 BITNAMI 통합 패키지를 다운로드 합니다.
https://bitnami.com/stack/redmine
2. 다운로드 받은 패키지를 인스톨 한다.
3. SMTP 설정
: 아래 경로의 configuration.yml을 찾아서 아래와 같이 수정한다.
파일이 없다면 configuration.yml 을 검색해서 복사한 후 아래 경로에 저장
C:\BitNami\redmine-2.2.3-0\apps\redmine\conf
※ redmine-2.6.1-0 에서는 redmine-2.6.1-0\apps\redmine\htdocs\config
폴더 아래 있음.
default:
# Outgoing emails configuration (see examples above)
email_delivery:
delivery_method: :smtp
smtp_settings:
address: ip를 넣는다.
port: 25
domain: domain을 넣는다.
authentication: :none <= ":"를 넣음에 주의
4. 테마변경
a. 아래 사이트에 가서 테마를 다운로드 받는다.
http://www.redmine.org/projects/redmine/wiki/Theme_List
a1. Theme Flat 클릭
a2. Theme Flat > Public SCM 의 항목을 클릭하면 다운로드 받을 수 있는 사이트로 이동
a3. 해당 사이트에서 파일 다운로드
a4. 다운로드 받은 파일을 redmine-2.6.0-2\apps\redmine\htdocs\public\themes 경로에 넣습니다.
a5. 관리 > 설정 > 표시방식 에서 테마를 아래와 같이 설정하면 테마 변경 됩니다.
5. 플러그인 추가
레드마인 플러그인 사이트
: http://www.redmine.org/plugins?page=1
a1. 사이트(https://github.com/alexmonteiro/Redmine-Monitoring-Controlling)에서 파일다운로드해서 아래 디렉토리로 이동하거나 or git 명령어를 사용해서 copy 한다.
redmine\apps\redmine\htdocs\plugins
b. folder 명이 redmine_monitoring_controlling 인지 확인, 다르면 링크를 찾을 수 없는 에러 발생
c. 다음 명령어를 htdocs 폴더에서 rake redmine:plugins:migrate RAILS_ENV=production 실행
※ 위 명령어를 실행 후 아래 와 같은 메시지가 나올 경우
rake 버전이 낮아서 나온 에러 이므로 gem update rake 명령어를 통해서 rake 를 업데이트 합니다.
rake aborted!
You have already activated rake 0.9.2.2, but your Gemfile requires rake 10.1.1.
Prepending `bundle exec` to your command may solve this.
(See full trace by running task with --trace)
'아직미정' 카테고리의 다른 글
AMQP (Advanced Message Queuing Protocol (0) | 2017.01.11 |
---|---|
우편번호 주소 체계 변경에 따른 주소 데이터 정리사항 (0) | 2015.07.16 |
WebLogic 설치 및 eclipse 연동 (0) | 2015.06.19 |
[서버] 리눅스 기본명령어 (0) | 2015.01.05 |
HTTPS와 SSL 인증서 (0) | 2014.11.25 |