본문 바로가기

프로그래밍/Web

Windows 레드마인 설치(Bitnami)

 

bitnami redmine 3.4.2  on Widows

 

 

명령어 실행 : 설치폴더\use.redmine.bat 실행

 

필요한 번들설치

bundle install --without development test --no-deployment

 

 

플러그인 설치

InstallPath/apps/redmine/htdocs/plugins

 

전체설치

bundle exec rake redmine:plugins RAILS_ENV=production

 

특정 플러그인

bundle exec rake redmine:plugins NAME=name RAILS_ENV=production

 

플러그인 삭제

bundle exec rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production

 

 

마이그레이션

bundle exec rake db:migrate RAILS_ENV=production

bundle exec rake remine:plugins:migrate RAILS_ENV=production

 

 

동일버전 단순 이전설치

mysql/data 폴더 복사

apps/redmine/htdocs 폴더 복사

use_redmine.bat 실행 /apps/redmine/htdocs 폴더에서 

> bundle install --without development test --no-deployment

> bundle exec rake db:migrate RAILS_ENV=production

> bundle exec rake remine:plugs:migrate RAILS_ENV=production

'프로그래밍 > Web' 카테고리의 다른 글

[JavaScript] Promise, async/await  (0) 2018.08.17
WebXR + three.js  (0) 2018.08.09
javascript 모듈화 패턴  (0) 2018.07.26
VSCode 웹 디버깅  (0) 2018.07.19
openssl  (0) 2018.07.17
Gradle Wrapper  (0) 2017.03.06
스프링 요청/응답  (0) 2017.02.26
JPA 쿼리 이것저것  (0) 2017.02.22
[spring] 프로퍼티 값 읽기  (0) 2017.02.21
[spring] 핸들러 인터셉터  (0) 2017.01.24