불필요한 Redmine 플러그인 삭제하기
bitnami로 설치된 Redmine 이 아니라는 점에 주의 바랍니다.
별반 다르지 않나 싶긴 합니다만..
// NAME= 부분에 설치된 플러그인명 적어준다. $ rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production // 그리고 플러그인을 지워주자 rm -rf <레드마인설치디렉토리>/plugin/plugin_name
“rake aborted!
You have already activated rake 10.1.0, but your Gemfile requires rake 10.4.2. Prepending `bundle exec` to your command may solve this.” 라는 문구가 나오면
명령어 앞에 bundle exec 를 붙이면 된다.
$ bundle exec rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production
이렇게 Redmine 플러그인 삭제하기 를 하면 된다.
참고
http://stepxstep.org/blog/2014/06/05/redmienuninstallplugin/
No Comments