# Install Node-Red in iSAP FRS # New Version!! **1. Check current node version** ```bash $ node -v ``` if its node v.8.X.X then proceed to next step **2. Install Node-red** ``` bash $ sudo npm install -g --unsafe-perm node-red node-red-admin ``` **3. After installation try to run node-red** ``` bash $ node-red ``` if it works, then set node-red to run on startup **4. Edit the file /etc/rc.local/** ```bash $ sudo nano /etc/rc.local ``` then insert these lines::: ```bash= #!/bin/bash if [ -x /home/isap/product/startmysystem.sh ]; then /home/isap/product/startmysystem.sh fi /usr/local/bin/node-red -u /root/.node-red & exit 0 ``` **5. Save, Exit & Reboot the Server** -- Completed 2019/04 --- **6. Import Node-red Script** Download Node-Red Script from this link: **https://1drv.ms/u/s!Ak1AacJrHJBBgZM-0XJAPn75CcWccQ?e=PfGv00** Open the Node-Red in browser.. **http://node-red-IP:1880** > then Go to Menu -> Import -> Select a file to Import -> Click Import ![](https://i.imgur.com/Jf8CV6s.png) ![](https://i.imgur.com/A1QCF0o.png) > Then Deploy! ![](https://i.imgur.com/vvU2jLt.png) ###### tags: `Node-Red` `Installation Guide` `INTERNAL`