0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【メモ書き】Node-Red構築

Posted at

 前置き

  Webアプリを作りたいけど環境構築が素人には難しい。
  Node-Redは環境構築、開発、運用が簡単のため使用することにした。

1.環境構築

 VMWware ESXi上にサーバを構築した。

 ◆ サーバスペック
  開発環境と検証環境を用意したいので余裕のある構成にした。

  OS  Ubuntu Linux (64 ビット)
  CPU 2 Core
  MEM 4GB
  SSD 64GB

2.インストール手順

  公式ドキュメントに記載されている手順通り実行する。
 
 ・公式ドキュメント
  https://nodered.jp/docs/getting-started/raspberrypi

◆ Node-Redインストール

  bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)

3.Node-Red起動方法

◆ Node-Red起動

  node-red-start

◆ スタートアップ登録
  sudo systemctl enable nodered.service

◆ 複数起動したい場合

  一時的に環境を増やしたい場合は以下のようにコマンドを実行する。

  node-red -p [ポート名] -u [保存ディレクトリ]

  node-red -p 1881 -u ~/2ndUser
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?