Installing Redmine 2.1 on Debian Squeeze with Apache modPassenger

This article is co-authored by Jérôme Warnier, from work mostly done by him with my occasional support. Kudos go to him. We couldn't find any valuable manual to install Redmine 2.1 on Debian Squeeze, and we sure met a lot of resistance along the way, so we came up with the following step-by-step guide...

Sources of inspiration

We used the following resources as a starting point. Thanks to their respective authors.

Assumptions

We take as given that:
  • We are using a Debian Squeeze installation
  • We have root access to this machine
  • There is public access to the machine itself (public IP)
  • We are able to define a public domain (or subdomain) name for this Redmine installation
  • We have access to define a database (we chose MySQL) user for Redmine (this is important to avoid security risks in sharing accounts with another web system). We also assume that we already have a MySQL server installation
  • We will be using Apache 2's modPassenger (and Apache 2 is already installed on the server)
  • We will be using redmine.example.com; so every time you see this below, replace it by your own domain

Warming up

We will first need to install basic packages: apt-get install ruby rubygems libruby libapache2-mod-passenger Download the latest version of Redmine (2.1.0 in our case) and untar it, then move it to /usr/local/share ln /usr/local/share/redmine-2.1.0 /usr/local/share/redmine chown -R root:root /usr/local/share/redmine-2.1.0 Install development libraries for MySQL: apt-get install libmysqlclient-dev Install development libs for Imagick: apt-get install libmagickcore-dev libmagickwand-dev (install shitload of packages)

Running the Gem stuff

Install Bundler (removing useless module, which would otherwise create dependencies): gem install bundler cd /usr/local/share/redmine/ /var/lib/gems/1.8/bin/bundle install --without development test postgresql sqlite

Configuration

Copy config/database.yml.example to config/database.yml and edit this file in order to configure your database settings for "production" environment. Example for a MySQL database using ruby1.8 or jruby: production:   adapter: mysql   database: redmine   host: localhost   username: redmine   password: my_password Generate a session store secret: /var/lib/gems/1.8/bin/rake generate_secret_token Generate the database structure: RAILS_ENV=production /var/lib/gems/1.8/bin/rake db:migrate Generate default configuration data: RAILS_ENV=production /var/lib/gems/1.8/bin/rake redmine:load_default_data (using “es” for Spanish language in terminal prompt) Setup config file in config/configuration.yml Change database_ciphr_key: ******* /var/lib/gems/1.8/bin/rake db:encrypt RAILS_ENV=production

Apache

Setup Apache’s VirtualHost config # 8080 in this case is because we use a reverse proxy before Apache. Otherwise use :80 <VirtualHost *:8080>  ServerName redmine.example.com  DocumentRoot /usr/local/share/redmine/public  <Directory /usr/local/share/redmine/public>    AllowOverride all    Options -MultiViews  </Directory> </VirtualHost> There's technically nothing special with the Apache config, given we use modPassenger, which makes Apache automatically detect Ruby files and interpret them with the right module... Just pointing to the right directory is enough. Once you enable this virtual host (a2ensite redmine.example.com) and reload Apache (/etc/init.d/apache2/reload), you should see your site running on http://redmine.example.com. The default login/password is admin/admin (don't forget to change this).

Comments

On Debian Squeeze:
In Configuration,
"Generate a session store secret: /var/lib/gems/1.8/bin/rake generate_secret_token"
returns an error:
"bash: /var/lib/gems/1.8/bin/rake: No such file or directory"
All that is in "../bin" is "bundle" which is duplicate of the "redmine/public"

It is installed from the repo, apt-get install rake: "rake is already the newest version."
And, it is listed as a gem install, gem list --local: "rake (0.9.2.2, 0.8.3)

Searching the web, http://stackoverflow.com/questions/1664974/rake-command-not-found , last comment gave the answer to find the correct path: gem env

!==&gt;CORRECT PATH is /usr/lib/ruby/gems/1.8/gems/rake-0.9.2.2/bin/rake - /usr/lib/ruby/gems/1.8 true
- :verbose =&gt; true
- :benchmark =&gt; false
- :backtrace =&gt; false
- :bulk_threshold =&gt; 1000
- REMOTE SOURCES:
- http://rubygems.org/

On ubuntu 12.04, bundle path is /var/lib/gems/1.8/gems/bundler-X.X.X/bin/bundle.
Running:

/var/lib/gems/1.8/gems/bundler-1.2.3/bin/bundle install --without development test postgresql sqlite

returns this error:

/var/lib/gems/1.8/gems/bundler-X.X.X/bin/bundle:2:in `require': no such file to load -- bundler (LoadError)
from /var/lib/gems/1.8/gems/bundler-1.2.3/bin/bundle:2

this its fixed loading the missing file in the bundle file:

#!/usr/bin/env ruby
$LOAD_PATH &lt;&lt; &quot;/var/lib/gems/1.8/gems/bundler-1.1.5/lib/&quot; (added line)
require &#039;bundler&#039;

Just to correct my previous comment:
<blockquote cite="#commentbody-4499">
<strong><a href="#comment-4499" rel="nofollow">Cesar perales</a> :</strong>
On ubuntu 12.04, bundle path is /var/lib/gems/1.8/gems/bundler-X.X.X/bin/bundle.
Running:
/var/lib/gems/1.8/gems/bundler-1.2.3/bin/bundle install –without development test postgresql sqlite
returns this error:
/var/lib/gems/1.8/gems/bundler-X.X.X/bin/bundle:2:in `require’: no such file to load — bundler (LoadError)
from /var/lib/gems/1.8/gems/bundler-1.2.3/bin/bundle:2
this its fixed loading the missing file in the bundle file:
#!/usr/bin/env ruby
$LOAD_PATH &lt;&lt; "/var/lib/gems/1.8/gems/bundler-1.1.5/lib/" (added line)
require 'bundler'
</blockquote>

from /var/lib/gems/1.8/gems/bundler-1.2.3/bin/bundle:2
and
$LOAD_PATH &lt;&lt; &quot;/var/lib/gems/1.8/gems/bundler-1.1.5/lib/&quot; (added line)

Should be:

from /var/lib/gems/1.8/gems/bundler-X.X.X/bin/bundle:2
and
$LOAD_PATH &lt;&lt; &quot;/var/lib/gems/1.8/gems/bundler-X.X.X/lib/&quot; (added line)

where X.X.X is you bundler version.

I have a little problem : error 500 on /admin and /my/setting page ... No log (no apache or in /usr/local/share/redmine/log). What should I do ?

<blockquote cite="#commentbody-4901">
<strong><a href="#comment-4901" rel="nofollow">nothing</a> :</strong>
I have a little problem : error 500 on /admin and /my/setting page … No log (no apache or in /usr/local/share/redmine/log). What should I do ?
</blockquote>

Found : I must use "PassengerDefaultUser " in apache conf, and do "chown -R webserveruser.webservergroup /usr/local/share/redmine"

When accessing to http://redmine.example.com:8080 I get a Phusion Passenger error page saying:
-----8&lt;-----
Ruby (Rack) application could not be started
A source file that the application requires, is missing.

It is possible that you didn&#039;t upload your application files correctly. Please check whether all your application files are uploaded.
A required library may not installed. Please install all libraries that this application requires.

Further information about the error may have been written to the application&#039;s log file. Please check it in order to analyse the problem.

Error message:
cannot load such file -- bundler
Exception class:
LoadError
Application root:
/usr/local/share/redmine
-----8&lt;-----
(Redmine log &quot;/usr/local/share/redmine/log/production.log&quot; is empty)

OS: Debian 7.1 (wheezy)
Redmine: version 2.3.1
Ruby: v1.9.3p448
Passenger packages:
* libapache2-mod-passenger v3.0.13debian-1
* ruby-passenger v3.0.13