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
- SASS
- 김골라
- AWS
- C언어
- S3
- expo
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- nodejs
- node
- can't getting credentials
- aws ec2
- 어셈블리어
- GeoJSON object too complex/large
- NODE_VERSION
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- CSS
- rwdImageMaps
- react
- AWS CodePipeline
- 설치완료안됨
- 이미지 맵
- Unable to find the global bin directory
- 이미지 좌표 추출
- netlify variables
- credential error
- 반응형 페이지 좌표 변환
- AWS CodeBuild
- EC2
- Error:error:0308010C:digital envelope routines::unsupported
- ogr2ogr
Archives
- Today
- Total
ImFe's study
[PM2] Error: Illegal characters in path, no such file or directory 해결 (윈도우 환경) 본문
카테고리 없음
[PM2] Error: Illegal characters in path, no such file or directory 해결 (윈도우 환경)
ImFe 2024. 9. 24. 02:20 Error: Illegal characters in path.
Error: ENOENT: no such file or directory, open 'c:\etc\.pm2" \m\module_conf.json'
Error: ENOENT: no such file or directory, open 'c:\etc\.pm2" \m\pm2.log'
윈도우 서버 환경에서 pm2 start 명령어 입력 후 발생한 문제.
.pm2 폴더의 위치를 pm2가 불러오지 못하는 상황이다.
setx PM2_HOME "[.pm2 폴더의 경로]"
PM2_HOME 환경변수를 .pm2 폴더가 존재하는 위치로 지정 해준다. (없으면 전역설치)
윈도우 명령어여서 source같은건 없고, 그냥 터미널을 껐다가 다시 켜주면 된다.

굿