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

Using Ruby 1.8.7 on CentOS 5.4. Trying to get Rails 3 app up on Passenger.

I have gone through all the steps but get this error in my Apache log file

Passenger ERROR (ext/common/ApplicationPool/../SpawnManager.h:220):
Could not start the spawn server: /usr/lib/ruby/: Permission denied (13)
[ pid=18207 thr=3086812880 file=ext/apache2/HelperAgent.cpp:354 time=2011-02-09 09:27:18.541 ]: Could not start the spawn server: write() failed: Broken pipe (32)
     in 'Passenger::SpawnManager::SpawnManager(const std::string&, const boost::shared_ptr<Passenger::ServerInstanceDir::Generation>&, const Passenger::AccountsDatabasePtr&, const std::string&, const Passenger::AnalyticsLoggerPtr&, int, const std::string&)' (SpawnManager.h:540)
     in 'Passenger::ApplicationPool::Pool::Pool(const std::string&, const boost::shared_ptr<Passenger::ServerInstanceDir::Generation>&, const Passenger::AccountsDatabasePtr&, const std::string&, const Passenger::AnalyticsLoggerPtr&, int, const std::string&)' (Pool.h:1078)
     in 'Server::Server(Passenger::FileDescriptor, pid_t, const std::string&, bool, const std::string&, const std::string&, const std::string&, const std::string&, unsigned int, unsigned int, unsigned int, unsigned int, const Passenger::VariantMap&)' (HelperAgent.cpp:241)
     in 'int main(int, char**)' (HelperAgent.cpp:344)

[Wed Feb 09 09:27:18 2011] [error]
Passenger could not be initialized because of this error: Unable to start the Phusion Passenger watchdog because it encountered the following error during startup: Unable to start the Phusion Passenger helper agent: it seems to have crashed during startup for an unknown reason, with exit code 1
[Wed Feb 09 09:27:18 2011] [notice] Digest: generating secret for digest authentication ...
[Wed Feb 09 09:27:18 2011] [notice] Digest: done
Passenger ERROR (ext/common/ApplicationPool/../SpawnManager.h:220):
Could not start the spawn server: /usr/lib/ruby/: Permission denied (13)
[ pid=18221 thr=3086513872 file=ext/apache2/HelperAgent.cpp:354 time=2011-02-09 09:27:18.592 ]: Could not start the spawn server: write() failed: Broken pipe (32)
     in 'Passenger::SpawnManager::SpawnManager(const std::string&, const boost::shared_ptr<Passenger::ServerInstanceDir::Generation>&, const Passenger::AccountsDatabasePtr&, const std::string&, const Passenger::AnalyticsLoggerPtr&, int, const std::string&)' (SpawnManager.h:540)
     in 'Passenger::ApplicationPool::Pool::Pool(const std::string&, const boost::shared_ptr<Passenger::ServerInstanceDir::Generation>&, const Passenger::AccountsDatabasePtr&, const std::string&, const Passenger::AnalyticsLoggerPtr&, int, const std::string&)' (Pool.h:1078)
     in 'Server::Server(Passenger::FileDescriptor, pid_t, const std::string&, bool, const std::string&, const std::string&, const std::string&, const std::string&, unsigned int, unsigned int, unsigned int, unsigned int, const Passenger::VariantMap&)' (HelperAgent.cpp:241)
     in 'int main(int, char**)' (HelperAgent.cpp:344)

Don't know where to start. Permission to Ruby or my App is denied?

Passenger in stand alone mode gives me an error about not being able to load Bundler.

Would really like to get this running under Apache2.

share|improve this question

1 Answer

Tyndall, It looks like the user which runs apache doesn't have permissions

Could not start the spawn server: /usr/lib/ruby/: Permission denied (13)

try to su to the user which runs apache, and try running ruby or accessing the folder /usr/lib/ruby

Edit

Try these steps to check if apache has permissions.

  • Log in to the unix server
  • [if you're not root] become root by running sudo su -
  • check which user is running apache bye running ps -ef | grep -i apache (the first column should display the user name)
  • now become apache by running su apache - (if apache is the user name)
  • now run cd /usr and ls (cd checks for execution permission on the folder and ls for read permissions)
  • do the same as the step before for /usr/lib. This is necessary because it might be that apache cannot access one of the folders in the path.
  • once you're in /use/lib check that binary file of ruby is there by running ls -l ruby
  • finally try to run ruby from that folder with ./ruby -v (check that it returns the correct version)

If all of that works, please paste here the apache configuration you have for passenger.

It should be something like

LoadModule passenger_module /usr/local/ruby/lib/ruby/gems/1.9.1/gems/passenger-3.0.2/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/ruby/lib/ruby/gems/1.9.1/gems/passenger-3.0.2
PassengerRuby /usr/local/ruby/bin/ruby
PassengerDefaultUser www-data
share|improve this answer
The user is apache. But I didn't set that up. How would I know the password to that account? (about 3 months into the linux/unix world - still learning) +1 – brun Feb 9 '11 at 21:20
drwxr-xr-x 5 root root 4096 Aug 4 2010 ruby – brun Feb 9 '11 at 21:25
Shouldn't that mean that anyone can read and execute? – brun Feb 9 '11 at 21:26
I'll update the post with some data about how to check this – Augusto Feb 9 '11 at 21:51
1  
su apache returns "This account is currently not available". – brun Feb 11 '11 at 5:33
show 1 more comment

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.