Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- Windows
- find
- grep
- context
- 네트워크
- vscode
- Eclipse
- ssh
- tomcat
- resource
- netsh
- Mac
- import
- GIT
- plugin
- Quartz
- JavaScript
- Windows 10
- xargs
- VirtualBox
- profile
- lsof
- 줄바꿈 문자
- maVen
- Source
- 단축키
- web.xml
- IntelliJ
- bash
- port
Archives
- Today
- Total
목록2024/09/10 (2)
develog
[node] pm2 cron 설정
pm2 start app.js --time --cron "0 3 * * *"pm2 start app.js --time --cron "0 3,12 * * *" cd /apps/node-backend-apppm2 killpm2 start app.js --time --cron "0 3 * * *"pm2 save
카테고리 없음
2024. 9. 10. 15:00
[node] pm2 자동 재시작 설정
pm2 startup 명령을 실행한다pm2 startup[PM2] Init System found: systemd[PM2] To setup the Startup Script, copy/paste the following command:sudo env PATH=$PATH:/usr/bin pm2 startup systemd -u --hp 출력된 명령을 실행한다sudo env PATH=$PATH:/usr/bin pm2 startup systemd -u --hp pm2 save 명령으로 현재 실행중인 애플리케이션 상태를 저장한다pm2 save
카테고리 없음
2024. 9. 10. 14:58