redmine插件安裝文檔步驟,以及故障處理
1、下載插件
插件介紹可以查看如下地址http://www.redmine.org/plugins/redmine_agile,在如下界面可以下載最新的插件安裝文件https://www.redmineup.com/pages/plugins/agile,本文中下載使用免費版的插件;
2、安裝
2.1、解壓拷貝
將下載的插件文件解壓得到redmine_agile目錄,並將該目錄拷貝到redmine插件目錄plugins目錄下。使用bitnami安裝的redmine該插件目錄為apps/redmine/htdocs/plugins目錄。
2.2、安裝
htdocs目錄下執行如下命令安裝插件:
bundle install
bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production
執行bundle install命令報源地址https訪問證書的錯誤
解決方法:執行命令 gem sources --add http://gems.ruby-china.com --remove https://rubygems.org
上個步驟可能不成功,不成功原因是深信服行為管理器把http://gems.ruby-china.com這個地址當作貼吧,不允許訪問,深信服放過這個地址即可。
執行 gem sources –l查看源
bundle config mirror.https://rubygems.org http://gems.ruby-china.com
二、Redmine_mylyn_connector插件安裝
拷貝redmine_mylyn_connector安裝包到apps/redmine/htdocs/plugins目錄,執行
bundle exec rake redmine:plugins NAME=redmine_mylyn_connector RAILS_ENV=production
重啟redmine即可
三、Redmine_smart_issues_sort插件安裝
拷貝redmine_smart_issues_sort安裝包到apps/redmine/htdocs/plugins目錄,執行
bundle exec rake redmine:plugins NAME= redmine_smart_issues_sort r RAILS_ENV=production
redmine插件安裝文檔步驟,以及故障處理