[NestJS] Forever를 사용하여 영구적인 실행을 해봅시다.Node.js2023. 1. 18. 16:00
Table of Contents
백그라운드 실행은 nohup과 forever이 있지만, nohup은 자동으로 꺼지는 에러를 발견하고 forever을 사용해보려고합니다.
Forever은 개발자가 업데이트를 포기한 상황입니다.
새로 개발 하시는 경우에는 Docker, nodemon, pm2를 추천드립니다.
구동환경
- Ubuntu 22.04.1 LTS
- Nest.js 9
Forever 설치
yarn:
yarn global add forever
npm:
npm install -g forever
Forever 실행
forever start --minUpdate 1000 --spinSleepTime 1000 -c "yarn start" ./
main.js를 실행했을 때는 DI 쪽으로 에러가 나서 직접 yarn start를 호출하는 방식을 이용했습니다.
더 효율적인 방법이나 좋은 방법이 있으면 댓글로 말씀해주세요!
Forever 목록 조회
forever list
Forever 종료
forever stop {pid}
Linux
이방식으로 안죽는다면, 아래 글을 참고하세요. 내부에서 돌아가는 프로세스를 강제로 죽입니다.
https://puleugo.tistory.com/134
Amazon Linux2
kill -9 $(lsof -t -i:3000 -sTCP:LISTEN)
pakage.json으로 관리하기
"start:nohup": "forever start --minUpdate 1000 --spinSleepTime 1000 -c \"yarn start:dev\" ./",
"kill": "kill -9 $(lsof -t -i:3000 -sTCP:LISTEN) & echo \"Nest JS Process is down!\""
공식 문서
Forever RedeMe.md: https://github.com/foreversd/forever#readme
'Node.js' 카테고리의 다른 글
[NestJS] TypeORM을 통한 트랜잭션 관리 (0) | 2023.04.30 |
---|---|
[Jest] it vs test (0) | 2023.03.04 |
[NestJS 에러] node @nestjs/schematics:module --name=auth --no-dry-run --no-skip-import --language="ts" --source-root="src" --spec --no-flat (0) | 2023.01.17 |
Reddit API로 게시글 가져오기 (3) | 2022.12.11 |
[NestJS] 쿠키와 세션이란? (0) | 2022.11.19 |
@임채성 :: 푸르고 개발 블로그
글 내용 중 잘못되거나 이해되지 않는 부분은 댓글을 달아주세요! 감사합니다! 문의: puleugo@gmail.com