Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm just trying to setup my first rails server - on Ubuntu 12.04. I installed rbenv (as user: deployer with groups sudo and admin). Now trying to install passenger according to their docs.

I run passenger-install-nginx-module it starts but then I get

Please specify a prefix directory [/opt/nginx]: 

--------------------------------------------

Permission problems

This installer must be able to write to the following directory:

/opt/nginx

But it can't do that, because you're running the installer as deployer.

Ok, I run sudo passenger-install-nginx-module then, and get sudo: passenger-install-nginx-module: command not found.

Does it mean I have to install it by loggin as root, installing whole rbenv for root user and then install passenger? Every tutorial I read they run it from not root user account :/, it doesn't work for me.

share|improve this question
1  
No, as your deployer user run which passenger-install-nginx-module to get the full path of the passenger script, then su, and run the command with a fullpath. You need this script only one time ;) – 23tux Dec 12 '12 at 22:00
Thanks, it's working. Post it as an answer so I could approve it. – Marcin Doliwa Dec 12 '12 at 22:16

1 Answer

up vote 2 down vote accepted

As I wrote in my comment, you have to run the passenger-install-nginx-module as root with the full path, because it is not in the $PATH var of you bash. To find out the path, run which passenger-install-nginx-module

share|improve this answer

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.