【 IoT 】於 Azure Ubuntu VM 安裝 Node-RED
內容
- 學習目標
- 前置準備作業
- 開啟 Node-RED 使用的 Azure VM Port
- 安裝 Node-RED
學習目標
- 如何設定特定的 Azure VM Port
- 如何安裝 Node-RED
前置準備作業
- 已安裝 Mosquitto
開啟 Node-RED 使用的 Azure VM Port
Step 1. 登入到 Azure Portal 並進入到所要使用的 VM
Step 2. 開啟 Mosquitto 所使用的特定 Port
-
2.1 點選左邊的
Networking
-
2.2 點選右方的
Add inbound port rule
-
2.3 輸入相關資訊
- 於
Destination port ranges
欄位輸入1880
- 於
Name
欄位輸入Port_1880
- 以上資訊輸入完後點選下方的
Add
按鈕
- 於
安裝 Node-RED
Step 1. 登入到 Azure VM
- Windows
- 使用
Putty
- 使用
PowerShell
- 使用
- macOS
Step 2. 新增 NodeSource APT repository
- 在終端機執行下方指令
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
Step 3. 安裝 Node.js
- 在終端機執行下方指令
sudo apt-get install -y nodejs build-essential
Step 4. 安裝 Node-RED
- 在終端機執行下方指令
sudo npm install -g --unsafe-perm node-red --allow-root
Step 5. 啟動 Node-RED
-
在終端機執行下方指令
node-red
Step 6. 透過瀏覽器開啟 Node-RED 編輯畫面
-
請在瀏覽器輸入下方網址
- AZURE-IP 請更改成 Node-RED 安裝的位置,在此請輸入 AZURE-IP
http://AZURE-IP:1880