Passenger and REE on Ubuntu 10.04

UPDATE: that didn’t work well, now I’m using the passenger 3 from the gem which comes with REE. No installation of passenger from brightbox, only the REE, and then run the passenger-install-apache2-module. Done ;-)

A small post on how to install Passenger and Ruby Enterprise Edition on Ubuntu 10.04.

add:

1
deb http://apt.brightbox.net lucid main

to /etc/apt/sources.list.d/passenger

Get the public key to satisfy apt-get:

1
wget http://apt.brightbox.net/release.asc

Install the key:

1
sudo apt-key add release.asc

Get the latest version of REE from http://www.rubyenterpriseedition.com/download.html

1
wget http://rubyforge.org/frs/download.php/71100/ruby-enterprise_1.8.7-2010.02_i386_ubuntu10.04.deb

Install this package:

1
sudo dpkg -i ruby-enterprise_1.8.7-2010.02_i386_ubuntu10.04.deb

Install passenger:

1
sudo apt-get install libapache2-mod-passenger

Restart apache:

1
sudo service apache2 restart

Done!

Comments

Copyright © 2013 - Tom Pesman - Powered by Octopress