Installing Redmine on Fedora 15 64bit
Added by Joe Gonzalez over 13 years ago
Hey all,
Installing Redmine on this machine has been quite the process, switching back and forth from one guide to another, mainly because I lack the technical know-how to read in between the lines.
I've gotten to the point where I need to generate the session store but I'm stuck.
I changed directory to /var/www/redmine-1.2.1 and entered RAILS_ENV=production bundle exec rake generate_session_store
but I get a ton of warnings saying:
NOTE: GEM::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
and finally another message that says:
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+)
WARNING: 'task :t, arg, :needs => [deps]' is deprecated. Please use 'task :t, [args] => [deps]' instead.
at /var/www/redmine-1.2.1/lib/tasks/email.rake:170
Hepl!
Replies (7)
RE: Installing Redmine on Fedora 15 64bit - Added by Joe Gonzalez over 13 years ago
Downgraded RubyGems to 1.7.2 with the following command:
gem update --system 1.7.2
It worked like a charm afterwards...
RE: Installing Redmine on Fedora 15 64bit - Added by Joe Gonzalez over 13 years ago
Here's a fun question...now that I've managed to install redmine, how do I access it? /sigh
RE: Installing Redmine on Fedora 15 64bit - Added by Joe Gonzalez over 13 years ago
How do I verify that everything is working as intended and how do I get started with redmine?
RE: Installing Redmine on Fedora 15 64bit - Added by Patrick Figel over 13 years ago
Usually you can access Redmine by opening http://your-servers-ip/ in the browser. This of course depends on how you've set up the web server. The default user/password would be admin/admin.
To make sure you are using the right gems (and compatible version), you should check the installed gems using gem list
and compare the output to the requirements of your Redmine version.
If you're still having problems, you should post more information about your installation (e.g. used version, web server, config files, ...)
RE: Installing Redmine on Fedora 15 64bit - Added by Steven Larrison about 13 years ago
I was having problems as well, but thanks to the information here I was able to figure it out.