AWS EC2에서 node index.js 명령어는 문제 없이 실행이 된다.
그러나 sudo node index.js는 실행이 되지 않는다.
Error: The Node-API version of this Node instance is 1. This module supports Node-API version(s) 3. This Node instance cannot run this module.
이는 sudo 경로의 문제로 발생한 에러이다.
sudo 경로를 바꿔서 해결할 수 있다.
그러나 which 명령어를 사용하여 간단한 해결이 가능하다.
sudo `which node` index.js
반응형
'프로그래밍 > 웹 개발' 카테고리의 다른 글
[react-color, TypeScript] 컬러 선택 기능 구현하기 (color picker) (0) | 2023.04.08 |
---|---|
[SCSS, JS] JavaScript를 통해 SCSS 속성값 동적으로 연결하기 (0) | 2023.04.08 |
[AWS] HTTPS 배포 관련 URL 생성 및 공인인증서 (1) | 2022.09.30 |
[Front-end] 에러 메시지에 따른 조건부 처리 (err.message) (0) | 2022.09.30 |
[React] 이벤트핸들러(event handler)에 event 외에 추가 인자 전달하기 (0) | 2022.08.10 |
댓글