一、安装node-red
在Ubuntu中依次输入:
sudo apt-get install nodejs
sudo apt-get install npm
sudo npm install -g node-red
node-red
二、登录
在谷歌浏览器中输入http://localhost:1880
三、设置开机启动
采用nodejs的pm2进程管理工具
安装pm2:
npm install pm2 -gd
使用PM2启动Node-red:
pm2 start node-red
查看启动项列表:
pm2 ls
设置pm2为自启进程:
sudo pm2 startup