Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This comment has been deleted
This comment has been deleted
The installation hangs when I go to install node-red. After I execute the node-red install it stays here and won’t proceed.
$ sudo npm install -g --unsafe-perm node-red node-red-admin npm WARN deprecated i18next-client@1.10.3: you can use npm install i18next from version 2.0.0 npm WARN deprecated tough-cookie@2.2.2: ReDoS vulnerability parsing Set-Cookie https://nodesecurity.io/advisories/130 /usr/local/bin/node-red -> /usr/local/lib/node_modules/node-red/red.js /usr/local/bin/node-red-pi -> /usr/local/lib/node_modules/node-red/bin/node-red-pi /usr/local/bin/node-red-admin -> /usr/local/lib/node_modules/node-red-admin/node-red-admin.js
bcrypt@0.8.7 install /usr/local/lib/node_modules/node-red-admin/node_modules/bcrypt node-gyp rebuild
make: Entering directory ‘/usr/local/lib/node_modules/node-red-admin/node_modules/bcrypt/build’ CXX(target) Release/obj.target/bcrypt_lib/src/blowfish.o CXX(target) Release/obj.target/bcrypt_lib/src/bcrypt.o CXX(target) Release/obj.target/bcrypt_lib/src/bcrypt_node.o
@javicho21 , did you apt-get update before installing node-red? Everything went fine for me but at the end the POST of admin username password simply timeout. Any idea?
I am having issues installing node red packages using nmp. I tried both types, as described here: https://nodered.org/docs/getting-started/adding-nodes
cd $HOME/.node-red npm install <npm-package-name>
sudo npm install -g <npm-package-name>
what am i doing wrong?
Thank you,
Great tutorial! Thank You.
Only one issue… Node-RED is rejecting my login attempts. After a bit of investigation, if I unblock the 1880 port and connect via http and not https I can login perfectly. It seems that when I try connecting on https Node-Red is unable to issue a token.
Browser output excerpt:
Thanks
After I run step 4, nginx stops loading.
-- Unit nginx.service has begun starting up.
Feb 25 00:46:57 nodered nginx[753]: nginx: [emerg] the size 134217728 of shared memory zone "SSL" conflicts with already declared size 10485760 in /etc/nginx/sites-enabled/XXXXX.XXXXX.com:10
Feb 25 00:46:57 nodered nginx[753]: nginx: configuration file /etc/nginx/nginx.conf test failed
Feb 25 00:46:57 nodered systemd[1]: nginx.service: Control process exited, code=exited status=1
Feb 25 00:46:57 nodered systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Please help
The instructions to launch Node-RED on startup failed in my case. Node-RED was not installed to /usr/local/bin/node-red-pi as stated node-red.service file. To obtain the directory where Node-RED is installed use $which node-red. Secondly, the command node-red-pi specifically relates to devices with constrained memory like the Raspberry Pi and BeagleBone.
The instructions here have been a great help in my case.
Thanks for this tutorial, i followed it and successfully set up a node-red server.
However, in the node-red.service file, i had to use the line
ExecStart=/usr/bin/node-red-pi --max-old-space-size=128 -v
instead of
ExecStart=/usr/local/bin/node-red-pi --max-old-space-size=128 -v
I ran into a small problem when asked to initially test by going to the fully qualified host and domain name and port 1880.
I was installing via ssh of course and of course nginx was not set up to listen on that port so it failed. I just skipped down and finished the nginx configs and everything else worked exactly as detailed above.
Thank you for the great tutorial!