일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Source
- port
- resource
- Windows
- 줄바꿈 문자
- 네트워크
- profile
- VirtualBox
- 단축키
- lsof
- Windows 10
- tomcat
- bash
- import
- find
- context
- IntelliJ
- maVen
- Quartz
- JavaScript
- Eclipse
- GIT
- Mac
- plugin
- netsh
- ssh
- xargs
- vscode
- web.xml
- grep
- Today
- Total
목록2024/09 (14)
develog
fork 모드로 실행하기# fork 모드로 실행pm2 start app.js cluster 모드로 실행하기# cluster 모드로 실행pm2 start app.js -i 1
command + shift + P 를 누르고 create environment 를 선택한다 venv 를 선택한다 사용할 인터프리터를 선택한다 .venv 폴더가 생긴다 터미널 창에서 프롬프트 앞에 (.venv) 가 표시된다
ctrl + shift + P 를 눌러 select interpreter 를 입력한다 사용할 인터프리터를 선택한다
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
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
폰트 설치하기## 폰트 파일 복사sudo cp /path/to/font.ttf /usr/local/share/fonts/## 폰트 파일 권한 설정sudo chmod 644 /usr/local/share/fonts/*## 폰트 캐시 업데이트sudo fc-cache -f -v## 폰트 설치 확인fc-list | grep 'FontName' fc-cache$ fc-cache --helpusage: fc-cache [-EfrsvVh] [-y SYSROOT] [--error-on-no-fonts] [--force|--really-force] [--sysroot=SYSROOT] [--system-only] [--verbose] [--version] [--help] [dirs]Build font informatio..