본문 바로가기
카테고리 없음

[Linux] Node-RED, pm2 설치

by 서율97 2024. 1. 21.

# 설치 참조링크

https://nodered.org/docs/getting-started/
 

Getting Started : Node-RED

 

nodered.org

 

# nodejs, node red 설치 (Ubuntu 기준 작성됨)

// nodejs 설치
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs 
sudo apt-get install -y curl

// node js 버전 확인
nodejs -v
// npm 버전확인
npm -v

// node red 설치
sudo npm install -g --unsafe-perm node-red

 

node red 실행

node-red

접속된 사용자 계정 기준으로 실행

 

# pm2 자동 실행

npm install pm2 -g

pm2 start node-red 
pm2 startup
pm2 save