Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to setup a ruby on rails server on ubuntu10.10 with apache2 and mod_rails (Phusion Passenger).

I already installed ruby 1.9.2-p0 and rails 3.0.8 and installed Passenger with the passenger-install-apache2-module and the passenger gem (v3.0.7).

It then tells me to add 3 lines to my Apache config file. So I added these lines to '/etc/apache2/apache2.conf':

LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.7/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/gems/1.9.1/gems/passenger-3.0.7
PassengerRuby /usr/local/bin/ruby

And I edited my '/etc/apache2/httpd.conf' and added:

NameVirtualHost *:80

<VirtualHost *:80>
ServerName 192.168.0.2
DocumentRoot /var/www/webop/public

<Directory /var/www/webop/public>
Allow from all
Options -MultiViews
</Directory>
</VirtualHost>

I also found out that the file mod_passenger.so in /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.7/ext/apache2/ actually does not exist, its name is mod_passenger.c. But I don't get any errors from that.

The server should only be accessible through a LAN. When I access the server I see all the files and directories in the public folder of my app but the app itself does not get started.

When I restart apache it tells me that mod_rails is already loaded so I guess that passenger is running but I can't figure out why it doesn't start my app!

Thanks in advance!

share|improve this question

3 Answers

The reason mod_passenger.so does not exist is because you haven't installed the Apache module. Execute:

passenger-install-apache2-module

This will create the mod_passenger.so file inside your gem directory, and give you three lines to copy into your apache2.conf file.

You can use any version of Ruby, and any gemset you like, via RVM, and possibly also RBENV. The passenger module is installed in the gemset so you shouldn't get any conflicts. This makes for a nice easy upgrade path from one version of Ruby to the next.

share|improve this answer
This might be of interest too rvm.io/integration/passenger – carnator Jan 15 at 6:37
up vote 4 down vote accepted

I finally figured out what the problem was: I messed up my ruby installation.

In /usr/local/ I had ruby1.9.2-p0 installed (which was the version I wanted to use) but in /usr/ i had ruby1.8.7 installed.

Passenger was confused which ruby version to use so I changed the LoadModule, PassengerRoot and PassengerRuby paths within apache2/mods-enabled/passenger.load and .config to the correct paths and it finally worked! Both files were created automatically which also caused the problem of a redefinition: On apache startup there was a warning 'mod_passenger already loaded'. So I removed

LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.7/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/gems/1.9.1/gems/passenger-3.0.7
PassengerRuby /usr/local/bin/ruby

from the apache config and the warning disappeared!

Probably this will help someone else some day!

share|improve this answer
I don't even have mods-enabled inside my apache2 folder! what could be done? – vishB Feb 1 at 7:18
@vishB any more details? did you follow any tutorial? what did you try already? – Andre Schweighofer Feb 1 at 13:52

I think they want you to put those three lines in your httpd.conf file, not in your apache2.conf. At least that's how I've always done it.

share|improve this answer
i tried both ways, both didn't work. doesn't the apache2.conf include the httpd.conf? thanks for your answer anyway! – Andre Schweighofer Jun 12 '11 at 9:52
Yea, you're probably right. It was a shot in the dark. Any more info on the behavior you are seeing? What happens when you try to navigate to the URL in your browser? Do you see anything in the apache or your rails app logs? – dpb Jun 12 '11 at 22:38
i finally figured out what the problem was and passenger is now running properly. thanks for your help! – Andre Schweighofer Jun 13 '11 at 18:07
I don't even have mods-enabled inside my apache2 folder! what could be done? – vishB Feb 1 at 7:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.