Help install Redmine on Slackware
Added by Eugene Doe almost 13 years ago
Hi!
I am trying to install Redmine on Slackware 13. I have yaml, ruby and postgresql installed from sources. Previous to install redmine I run:
gem install pg -- --with-pg=/usr/local/pgsql/
to install pg with custom postgres location. After that I've install bundler and then:
# bundle install --without development test sqlite mysql rmagick Using rake (0.9.2.2) Using activesupport (2.3.14) Using rack (1.1.3) Using actionpack (2.3.14) Using actionmailer (2.3.14) Using activerecord (2.3.14) Using activeresource (2.3.14) Using coderay (1.0.6) Using i18n (0.4.2) Using net-ldap (0.3.1) Using pg (0.13.2) Using rails (2.3.14) Using ruby-openid (2.1.8) Using tzinfo (0.3.33) Using bundler (1.1.3) Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
This is database config:
production: adapter: postgresql database: redmine host: localhost username: redmine password: my_password encoding: utf8
Now following the installation instructions:
# rake generate_session_store Some gems may need to be installed or updated. Please run `bundle install --without development test`.
How to determine what is wrong? bundle says everything is ok.
# gem -v 1.8.24 # ruby -v ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux]