Last active
January 21, 2016 08:28
-
-
Save paperdarwin/9371765 to your computer and use it in GitHub Desktop.
run a nodejs app even after you logout from ssh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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