この記事はRaspberry piでNode-redをインストールする手順を説明します。
Installation
Terminalで以下のコマンドを実行します。
bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered) |
Y/Nだと聞かれます。yを入力しインストール進みます。
またY/Nだと聞かれます。yを入力しインストール進みます。
大体10分くらいかかります。
インストール完了です。
Running locally
Node-REDコマンドからRaspberry PIのローカルでNode-REDを立ち上げることできます。
TermnialからCtrl+CすればNode-RED Serverが停止できます。
補足ですが、Raspebrrypiではメモリの問題でNode-redを立ち上げるときArgumentを追加し、使用しないNode.jsにメモリ解放することが可能です。
Argumentはこちらです。
max-old-space-size argument. |
起動コマンドはこうになります。
node-red-pi –max-old-space-size=256 |
BrowserでyourdevicesIP:1880を入力、このようなNode-Red画面が出れば大丈夫です!
Node-Red Auto Start
以下のコマンドを実行してください。
sudo systemctl enable nodered.service |
Node-Red Auto Stop
以下のコマンドを実行してください。
sudo systemctl disable nodered.service |