2

I am in need to run a play through ssh on server.

Problem is that after I quit ssh, play console is going down and server is being killed.

Are there any ways to start play 2.3.x without console ,so the program can run after I disconnect from ssh??

biesior
  • 55,576
  • 10
  • 125
  • 182

1 Answers1

1

Use nohup for this, i.e. (when using with dist package):

nohup /path/to/your/app/bin/yourapp &

instead of just

./yourapp

@see: its description

biesior
  • 55,576
  • 10
  • 125
  • 182