728x90
SMALL
pm2 자동실행
-
[ NodeJS ] 백엔드 재부팅 시 PM2 자동실행 설정Topic/Node.js | server 2023. 5. 27. 11:11
pm2는 pm2 start 명령으로 실행할 앱 지정 시 자동으로 프로세스를 관리해주는 프로그램이다. 하지만 서버가 잠깐 중지되었다가 다시 실행되었을 때 pm2는 자동으로 실행되지 않는다. 그래서 우리는 자동으로 재부팅 시 pm2가 실행되게 바꿔줘야한다. pm2 start app.js pm2 startup 명령어로 systemd를 통해서 자동으로 실행되도록 unit파일을 생성한다. pm2 startup [PM2] Init System found: systemd [PM2] To setup the Startup Script, copy/paste the following command: sudo env PATH=$PATH:/usr/bin /home/username/.node_modules/lib/node_mod..