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 currently have different users setup with a Rails app in each users home directory. I used RVM to install separate version of Ruby, Rails, and Thin in each home directory. If I login to the user and issue:

thin start -e production --servers 2 -p ####'

then it starts fine. I have seen several methods of auto-starting Thin but most revolve around either a shared RVM being installed or a single version of Thin being installed. So far my attempts have failed so I am looking for suggestions.

Edit: To be clear each user account has manually installed RVM in their home directory, then gem installed specific version of Thin.

share|improve this question

1 Answer

separate installations are quite good approach that will give best separation between apps

for guide on running tasks in background check https://rvm.io/integration/cron/

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.