Skip to content

Instantly share code, notes, and snippets.

@paperdarwin
Last active January 21, 2016 08:28
Show Gist options
  • Save paperdarwin/9371765 to your computer and use it in GitHub Desktop.
Save paperdarwin/9371765 to your computer and use it in GitHub Desktop.
run a nodejs app even after you logout from ssh
nohup node app &
# to kill it execute ps -ef
# find the process id for "node app " and then
# kill -9 <process id>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment