Ruby error when running rake db:migrate
Added by Anonymous over 13 years ago
I just installed the latest Redmine 1.1.3-1 using the Bitnami Redmine installer on a Windows 2003 server machine. I have not made any changes/ updates/ upgrades to the default installation.
When I run the rake db:migrate command (even without installing any plugins), I get a ruby error that complains about a missing mscvrt-ruby191.dll (see attached screenshots). The migrate proceeds to fail after that.
- Installing on Windows 2003 Server (32 bit edition), and
- Using Btnami Redmine 1.1.3-1
Any help will be appreciated.
Thanks in advance.
-Kunal
screenshot1.jpg (55 KB) screenshot1.jpg | Missing DLL error | ||
screenshot2.jpg (39.2 KB) screenshot2.jpg | Failed migrate messages |
Replies (3)
RE: Ruby error when running rake db:migrate - Added by Anonymous over 13 years ago
Actually the problem suddenly seems to be on Win XP too, that too on a fresh installation of Bitnami Redmine 1.1.3-1.
RE: Ruby error when running rake db:migrate - Added by Etienne Massip over 13 years ago
Redmine does not support Ruby 1.9 yet, see RedmineInstall.
The syntax rake db:migrate RAILS_ENV=production
is not valid under windows, use
set RAILS_ENV=production rake db:migrate
instead.
RE: Ruby error when running rake db:migrate - Added by Anonymous over 13 years ago
Thanks. So I should raise this issue with Bitnami, since their packaged Redmine installer seems flawed?
Regarding the command itself, I've used the right one before.