Redmine (3) - Redmine 일상 사용

Redmine 일상 사용
1. 주제 변경
나 는 기본 주제 가 약 해 졌 다 고 말 할 수 있다. 과감하게 나 등 을 괴 롭 히 는 사람 은 반드시 바 꿔 야 한다. 홈 페이지 에 직접 설치 방법 을 제시 했다. 링크 는 다음 과 같다. Redmine 테마 변경 홈 페이지 에 대한 선택 가능 한 테마 목록 홈 페이지 사용자 정의 테마 페이지
주제 에서 자신 이 좋아 하 는 것 을 찾 았 습 니 다. 저 는 redmine - theme - basecamp - with - icon 의 주 제 를 찾 았 습 니 다. 제시 에 따라 다음 과 같이 설치 하 였 습 니 다.
# git clone https://github.com/lqez/redmine-theme-basecamp-with-icon.git /var/redmine/public/themes/basecamp-with-icon 
\\ Redmine public/theme

#( ) ,

# sh /var/redmine/public/themes/basecamp-with-icon/patch.sh # Administration > Settings > Display,
, , , Redmine

2. 플러그 인 설치 / 마 운 트 해제
redmine 의 강력 한 점 은 플러그 인 입 니 다. 플러그 인 을 통 해 더 많은 기능 을 추가 하기 때문에 플러그 인 은 Redmine 에서 없어 서 는 안 될 구성 요소 가 되 었 습 니 다.
추천 플러그 인: projectstree_view / / 플러그 인, 항목 을 부자 관계 에 따라 정리 프로 세 스 속성 구조 redmineattach_screenshot / / 캡 처 플러그 인 업로드 redmineckeditor / redmine 의 ckeditor 플러그 인, 고급 기능 플러그 인 redmineezlibrarian / redmine 의 도서, 장치 관리 플러그 인 redmineimporter / / redmine 사용자 및 bug 가 져 오기 플러그 인 redminecode_review / / redmine 의 사용자 코드 심사 플러그 인 timesheetplugin / / 워 크 시트 플러그 인, 각 항목 의 워 크 타임 상황 을 쉽게 볼 수 있 습 니 다 googleanayltics_plugin / / 제3자 통 계 를 지원 하 는 플러그 인, google 또는 기타 플러그 인 redmine 사용 가능last_messages / / 포럼 의 최신 발언 이나 답장 을 표시 하 는 파일 목록 ezfaqplugin / / faq 기능 advanced 지원roadmap / redmine 고급 로드 맵 플러그 인, 그 버 전의 실현 시간 을 편리 하 게 알 수 있 습 니 다. Due Date Reminder plugin Redmine Banner plugin Redmine Free Mind plugin Redcarpet Markdown Wiki formatter Redmine Wiki Extensions plugin Redmine Wiki Notes plugin
여 기 는 codereview 를 예시 로 설치 하 다
1.     https://bitbucket.org/haru_iida/redmine_code_review/overview 
cd /var/redmine/plugins/
hg clone https://bitbucket.org/haru_iida/redmine_code_review/overview

2. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before)
readme,
rake redmine:plugins:migrate RAILS_ENV=production

3. redmine redmine nginx, nginx , redmine ,

4. Administration > Settings > plugins

5.
# rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production , redmine

3. 이메일 발송
기본 Redmine 에서 연락 처 를 알 리 는 것 은 모두 email 을 통 해 이 루어 지기 때문에 이 럴 때 email 을 보 내 는 것 을 약간 조정 하여 가장 기본 적 인 알림 기능 을 완성 해 야 합 니 다. 공식 메 일 설정 페이지 입 니 다.
1、 SMTP           , configuration.yml   
# cp config/configuration.yml.example config/configuration.yml
production:
delivery_method: :smtp
smtp_settings:
address: smtp.example.net
port: 25
domain: example.net
authentication: :login
user_name: [email protected]
password: redmine

development:
delivery_method: :smtp
smtp_settings:
address: 127.0.0.1
port: 25
domain: example.net
authentication: :login
user_name: [email protected]
password: redmine

2、 TLS-requiring SMTP servers, TLS-related settings
production:
delivery_method: :smtp
smtp_settings: tls: true
enable_starttls_auto: true
address: "smtp.gmail.com"
port: '587'
domain: "smtp.gmail.com"
authentication: :plain
user_name: "[email protected]"
password: "your_password"

3、
production:
delivery_method: :smtp
smtp_settings:
address: smtp.knology.net
port: 25
domain: cybersprocket.com
authentication: :none

4. 첨부 파일 저장 위치
#  ${redmine_install_path}/config/configuration.yml  ,       
# Absolute path to the directory where attachments are stored.
# The default is the 'files' directory in your Redmine instance.
# Your Redmine instance needs to have write permission on this
# directory.
# Examples:
# attachments_storage_path: /var/redmine/files //
# attachments_storage_path: D:/redmine/files //win
attachments_storage_path:

5. 로그 기능
cp config/additional_environment.rb.example config/additional_environment.rb 

#
#Logger.new(PATH,NUM_FILES_TO_ROTATE,FILE_SIZE)
config.logger = Logger.new(config.log_path, 2, 1000000)
config.logger.level = Logger::INFO

6. 백업
#                      ,          ,             
# Database /usr/bin/mysqldump -u -p | gzip > /path/to/backup/db/redmine_`date +%y_%m_%d`.gz
# Attachments rsync -a /path/to/redmine/files /path/to/backup/files
#

7. redmine 재 부팅
앞 에 많은 글 들 이 redmine 리 셋 을 언급 했 기 때문에 이쪽 에서 따로 꺼 냅 니 다.
passenger 의 사용자 매 뉴 얼 을 통 해 redmine 를 다시 시작 하 는 방식 은 두 가지 가 있 음 을 알 수 있 습 니 다. 주소 redmine 재 부팅 입 니 다.
1.   nginx 
2. $(redmine_content_path)/tmp/ root restart.txt ,Phusion Passenger

좋은 웹페이지 즐겨찾기