Someone succeeded in installing Redmine with windows
Added by Jean-Claude Caillot over 13 years ago
Hello,
We are trying to install Redmine on windows but we have a lot of dificulties. Did someone succeed in it?
Replies (21)
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
Without any problems, what issues do you run into ?
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
Nous avons actuellement dans un projet de administration électronique, plusieurs . nous utilisons un logiciel de gestion de projet Agile (icescrum), nous utilisons subversion, sonar, hudson, wiki... et nous voulons remplacer cet ensemble par un logiciel à entrée unique. Nous voulons un logiciel open source qui puisse s'installer avec windows.
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
Vous avez pu l'installer sous windows? Nous avons essayé, c'est un casse-tête!
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
Could you please speak English (I'm french but forum threads are intended to be read be everyone) ?
Redmine won't replace SVN nor Sonar nor Hudson, Redmine is firstly a ticket / issues bug management system.
About the setup, could you please tell us what went wrong ? Did you check and did you follow the redmine installation procedure ?
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
c'est mieux de parler anglais, sauf pour moi qui le parle comme une vache espagnole.
Redmine is not a forge software?
Redmine won't replace all these software but can be a common door to all the se software, no?
After installing Redmine we'll to install them. correct?
RE: Someone succeeded in installing Redmine with windows - Added by olivier lanet over 13 years ago
Salut,
I install Redmine on Windows last week from http://bitnami.org/stack/redmine
It was very easy, fast and it works perfectly !
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install
the mysql gem and try again: gem install mysql.
MissingSourceFile: no such file to load -- mysql
require at org/jruby/RubyKernel.java:1038
require at d:/jruby-1.6.3/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:29
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
after executing "gem install apears that:
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
Building native extensions. This could take a while
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
d:/jruby-1.6.3/bin/jruby.exe extconf.rb
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
I put the message error on word file
Thanks
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
I don't know anything about JRuby, maybe you should check https://github.com/jruby/jruby/wiki/ActiveRecord-JDBC.
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
Jean-Claude Caillot wrote:
Redmine is not a forge software?
No.
Redmine won't replace all these software but can be a common door to all the se software, no?
Core RM contains a wiki system, integrates with most SCMs including SVN (you won't be able to commit any changes via core Redmine though, it only reads data from SCMs).
There are a lot of plugins extending RM, e.g. for Hudson integration, check plugins directory.
After installing Redmine we'll to install them. correct?
Yes.
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
what is the difference entre Redmine anf a forge?
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
Redmine purpose is to be a project management application but I guess you can say that it is a forge too.
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
i was studying some forge software and people say that Redminde is a Forge. It is the reason i asked it to you. Do you know Typo3 forge?
RE: Someone succeeded in installing Redmine with windows - Added by Etienne Massip over 13 years ago
Tried it a few time ago, but don't have any memories of it :)
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
when you look at the help pof Typo3 Forge, it is the Redmine site!
RE: Someone succeeded in installing Redmine with windows - Added by Jean-Claude Caillot over 13 years ago
Typo3 Forge is powered by Redmine
RE: Someone succeeded in installing Redmine with windows - Added by Aziz Latypov almost 13 years ago
Hello!
I am trying to install redmine-1.2 on windows 7 x86-64 ultimate, using mingw.
gem version: 1.8.12
gem list:
actionmailer (2.3.14, 2.3.11) actionpack (2.3.14, 2.3.11) activerecord (2.3.14, 2.3.11) activeresource (2.3.14, 2.3.11) activesupport (2.3.14, 2.3.11) bigdecimal (1.1.0) i18n (0.4.2) io-console (0.3) json (1.5.4) minitest (2.5.1) postgres-pr (0.6.3) rack (1.1.1) rails (2.3.14, 2.3.11) rake (0.8.7) rdoc (3.9.4) sqlite3 (1.3.5 x86-mingw32)
database is postgreSQL, verison 9.1.
database.yml
production: adapter: posgres database: redmine host: localhost username: redmine password: ******* encoding: utf8
but same thing happend when i tried it with sqlite3.
I am getting error while
> RAILS_ENV=production rake db:migrate c:/Ruby193/lib/ruby/gems/1.9.1/gems/rake-0.8.7/lib/rake/alt_system.rb:32: Use RbConfig instead of obsolete and deprecated Config. rake aborted! uninitialized constant Gem::SyckDefaultKey (See full trace by running task with --trace)
the log with --trace is in attachment
RE: Someone succeeded in installing Redmine with windows - Added by Ivan Cenov almost 13 years ago
Aziz Latypov wrote:
Hello!
I am trying to install redmine-1.2 on windows 7 x86-64 ultimate, using mingw.
gem version: 1.8.12
gem list:
[...]database is postgreSQL, verison 9.1.
database.yml
[...]
but same thing happend when i tried it with sqlite3.I am getting error while
[...]
the log with --trace is in attachment
See here : http://www.redmine.org/projects/redmine/wiki/RedmineInstall
You are using Ruby 1.9.3 but Redmine 1.2 does not run on it. Use Ruby 1.8.7 instead.
RE: Someone succeeded in installing Redmine with windows - Added by Aziz Latypov almost 13 years ago
Yeah, thnx. I've already found what I was doing wrong and I've already installed redmine as it described in redmine howtos. And now enjoying it:)
Jean-Philippe, thank you for this wonderfull thing!!!