Posts Node nohup Command
Post
Cancel

Node nohup Command


실행 방법

1
$ nohup node /경로/main.js &
  1. 일반 실행 방법
    • 일반적인 실행 방법으로는 ssh가 묶여 다른 작업을 할 수 없음
1
 $ node server.js
  1. Background 실행 방법
    • Background Process로 실행되어 ssh에서 다른 작업을 할 수 있음
1
 $ nohup node server.js &

실행 확인 방법

1
$ ps -aux | grep server.js

중지 방법

1
2
$ ps -ef | grep a.out
$ kill -9 pid번호

PS

  • nohup 사용시 사용 디렉토리에 nohup.out이라는 파일이 자동 생성됨
  • nohup.out에는 nohup사용시 출력이 기록됨
  • nohup.out 사용하고 싶지 않다면
1
$ nohup echo hello > /dev/null
This post is licensed under CC BY 4.0 by the author.