본문 바로가기
IT/기타

Redmine 4.1에 플러그인 설치하기

by twofootdog 2020. 7. 21.

redmine 4.1에 플러그인을 설치해보자.

 

 

레드마인 플러그인 리스트 : 

https://www.redmine.org/plugins/

http://www.redmine.org/projects/redmine/wiki/Plugin_List

 

 

설치 플러그인 : ckeditor

http://www.redmine.org/plugins/ckeditor

 

 

 

https://github.com/a-ono/redmine_ckeditor

 

 

Source Code 선택 후 [링크 주소 복사] 클릭

 

 

플러그인 다운로드

# cd /home/redmine/redmine-4.1.0/plugins
# curl -LJ -o redmine_ckeditor.tar.gz [복사 url]
# curl -LJ -o redmine_ckeditor.tar.gz https://github.com/a-ono/redmine_ckeditor/archive/1.2.3.tar.gz



다운로드 받은 플러그인 압축 해제 후 디렉토리 명 변경(디렉토리명이 redmine_chkeditor가 아니면 나중에 redmine 실행이 안됨)

# tar -xvf redmine_ckeditor.tar.gz
# mv redmine_ckeditor-1.2.3/ redmine_ckeditor

 

 

레드마인 기본 디렉토리로 와서 플러그인 설치

# cd /home/redmine/redmine-4.1.0/
# bundle install --without development test

안되면 다음과 같이 설치

# bundle install --no-deployment

 

 

만약 redmine DB로 Mig까지 필요한 플러그인인 경우는 rake를 이용한 Mig 수행(ckeditor는 해당사항 없음)

# rake redmine:plugins:migrate RAILS_ENV=production
# rake db:migrate RAILS_ENV=production
# bundle exec rake redmine:plugins:migrate RAILS_ENV=production
# bundle exec rake redmine:plugins NAME=[플러그인이름] RAILS_ENV=production

 

 

 

아파치 재시작

# systemctl restart httpd

 

 

레드마인 접속 후 [관리] -> [플러그인]에서 설치된 플러그인 확인

 

[관리] -> [설정] -> [본문 형식]을 [Chkeditor]로 변경 후 저장

 

 

레드마인 편집창 변경 확인

 

 

개인적으로 자주 활용하는 플러그인 목록은 다음과 같다

Editor 창 업그레이드 : http://www.redmine.org/plugins/ckeditor

할당받은 일감(issue) 표시(badge) : https://www.redmine.org/plugins/redmine_issue_badge

할당받은 일감(issue) 표시(favicon) : https://www.redmine.org/plugins/redmine_issue_favicon

일감(issue) 작성 전 템플릿 정의 : https://www.redmine.org/plugins/redmine_issue_templates

빠른 일감 상태변경 기능 : https://www.redmine.org/plugins/redmine_issue_dynamic_edit

레드마인 웹페이지에서 로그 확인 기능 : https://www.redmine.org/plugins/redmine_logs

 

 



참고

https://goddaehee.tistory.com/80

 

7-3 [CentOS7] 레드마인 (Redmine) 플러그인 설치 (ckeditor)

[CentOS7] 레드마인 (Redmine) 플러그인 설치 (ckeditor) 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ 레드마인 플러그인 설치 ] 입니다. :) 레드마인 플러그인을 설치해 보겠다. 리눅스 초보자인 나에겐... 생각..

goddaehee.tistory.com

https://www.redmine.org/projects/redmine/wiki/Plugins

 

Plugins - Redmine

Plugins¶ Plugin list¶ A full list of available Redmine plugins can be found at the Plugin Directory. More plugins (some in very early development), which are not listed at the Plugin Directory but are publicly available on GitHub can be found using a searc

www.redmine.org

 

 

 

댓글