Bitnami-redmine
The company should be agile development management, choose Redmine as the management tool.
and redmine itself needs the environment more troublesome, need to install Mysql,ruby,redmine,apach.
Bitnami provides a one-click installation, very convenient, if you just need to know redmine and see the effects of some plug-in, we recommend you use one-click installation.
Bitnami Redmine official website: https://bitnami.com/stack/redmine
Once installed, open the Bitnami Redmine Stack management tool, click Go to Applocation, click Redmine, you can use Redmine.
plug-in installation
Because the Redmine version supported by the "Kanban" plugin is too low, the official web page Cannot find the download link ... So chose "DashBoard" to replace ...
Dashboard:https://www.redmine.org/plugins/redmine-dashboard
After the download, unzip the copy to the C:\Bitnami\redmine-3.1.1-0\apps\redmine\htdocs\plugins directory (I am using the Window2008 virtual machine)
Then click on the Start menu-start-bitnami Redmine stack-use Bitnami statck, pop up the cmd window.
Input:CD apps\redmine\htdocs\plugins, jump to plugins directory, be sure to enter this directory to install plugins!!
Then enter:Bundle install--without Development Test Install dependency package (requires networking download dependency package)
Then enter:rake redmine:plugins:migrate rails_env=production (Install plugin)
Restart Redmine Service
Detects if the plug-in installation was successful Administration-plugins
Application Dashboard Plug-in
Trouble Shooting
1. If it is unsuccessful, run the bundle install with some gems and then run the command as above
Attached: Ruby uses gems to download things from the official website, there will be a problem with the time-out error, this time you can use the Taobao Ruby image to install
CMD is set as follows:
Gem Sources--remove https://rubygems.org/
Gem Sources-a https://ruby.taobao.org/
Gem Install Rails
Where rails is the component you want to install
2. You had already activated rake 0.9.6, but your gemfile requires rake 10.1.0. Using bundle EXEC Solve this
You might has the old version of Rake installed. In the case, use:
gem list rake
If the output shows only one version as:
*** LOCAL GEMS ***rake (0.9.6)
Then simply installed the newer version
Gem Install Rake
Bitnami-redmine installation and plug-in use