I had created an rails app which is using thin server for starting it .
i had deployed that machine on a ubuntu virtual machine .
i loggedin in to that machine via ssh and start the server via
thin start -R config.ru &
so that i have it should run in background .
so far so good i am able to access my rails app properly from remote machine.
as i logged out from my ssh terminal from the remote machine .
my application stop responding.
is there any other way around to start application in background from remote machine .
Run it with:
And it should stay in background even when you log out.