安装插件redmine_release_notes遇到的问题
1、redmine_release_notes下载地址:https://github.com/hdgarrood/redmine_release_notes
2、安装环境: 本地redmine2.3.4
3、出现问题:
- 按照下载地址上的安装步骤安装:
Do the migrations.
rake redmine:plugins:migrate
Load the default formats (optional, recommended). If you‘ve been using earlier versions, this will read your formats.yml and put them into the database (which is what you want).
rake redmine:plugins:release_notes:load_default_formats
Restart redmine.
- 出现问题:在执行
rake redmine:plugins:migrate命令时,出现
rake aborted! Unknown database ‘redmine_development‘ -
配置redmine_release_notes时出现如下现象
4、问题原因
在config/database.yml中我们使用的是production数据库
5、解决办法
在命令行中都加上RAILS_ENV=production,如下:
rake db:migrate_plugins RAILS_ENV=‘production‘
RAILS_ENV=production rake redmine:plugins:release_notes:load_default_formats
最后,问题解决!
安装插件redmine_release_notes时出现rake aborted! Unknown database 'redmine_development'
时间: 2024-10-15 18:48:23