Hi Folks,
I need to install NR on a M4 Pro Mac Mini with Sequoia 15.3
Is there a step-by-step guide that I can follow?
I.e. should I install node.js before and then NR or is there a complete setup that installs all necessary module?
Hi Christian,
thank you very much for your tip. I have no experience with Docker, I find it promising, albeit challenging.
My goal is to move a very complex project from ubuntu to a mac silicon platform.
I use a lot of modules, interact with many services like mosquitto, knx gateway, python, file system httprequest and therefore I need to open many more ports in addition to the 1880. I will need to replace the empty flows.json with my file, modify config setting and so on, accessing the file system to use some icon and python files. With Docker will I be able to go to the file system level to replace some files with my own? Does Mosquitto need to be run as a Docker container or can I use a standard installation?
Sorry with all these naive questions, but you look like an expert on this matter. Docker attracts me on one hand and scares me on the other one.
Indeed it is a matter of installing nodejs and then npm install -g nodered as per documentation. Then you can run node-red start from any directory after which the required files (settings/flows.json) will be created in that directory under the (hidden) .nodered directory.
See if that works for you. After that you want node-red to be run in the background/at boot which is also described in the documentation
Because it is just something else to learn about. If you are familiar with Docker already, or are prepared to put the time in to learn about it, then by all means use it. For the majority of users, though, it just adds complexity with no significant advantage (again, for the majority of users).
Robert, I can understand the concerns - I agree it can be daunting. If you have a complex project with significant dependencies then I would argue even more reason to go do docker.
The benefits of docker is that with work then the whole environment can be maintained quite independently for other dependencies on your machine - you can easily have test environments etc.
Clearly I encourage you to do the assessment of what is best for you. But to test out docker.
Download and install Docker desktop for the Mac - It is ROCK solid, you do not need an account at this stage (at least when I first installed)
To initially get it running start NR with a bind mount (that is rather than using the Docker volume to store your data use a local directory
Replace the /home/pi/.node-red directory with your local directory
docker run -it -p 1880:1880 -v /home/pi/.node-red:/data --name mynodered nodered/node-red
This will start node red on port 1880, you can access it by http://localhost:1880. If you create a flow you will see in the directory the flows.json file, you will see the settings.js file etc.
As you before more confident you can then move to docker compose . This will allow you to add other servers like mosquito to the stack , keep them isolated etc. For a complex project to me it is a now brainer - Happy to help if needed regardless good luck
Fair call - and I get the added complexity. For anything complex though, particularly if you want to have test environments, multiple instances , changing versions on node, additional services like mosquito etc then it makes sense. I would argue docker initially while scary is not difficult to get going and worth the pain however each to their own -
It depends what you mean by complex, if by complex you mean accessing the sound system, USB ports, I2C GPIO etc, then I disagree, it is easier without Docker (unless you know Docker inside out).
This. Docker/compose is fantastic and I use it as much as possible, but with node-red, once you need access to hardware layers, it can become problematic.
Hi zenofmud,
thank you very much. I installed node.js and then node-red with the suggested command and voila NR is up and running with one single line command!
Now comes the hard part. I have to move existing project on Node-red v. 3.0.2 on Ubuntu to this brand new mac mini M4 pro. I have tons of custom nodes.
Do you recommend to export-import the nodes or can I simply overwrite current empty flows.json?
custom modules: do you suggest to overwrite the new empty folder or importing one by one the modules used in the project?
First, if possible, on the Ubuntu machine, make sure that all installed nodes are on the latest versions. Then copy the complete .node-red folder, except the node_modules folder, across to the new machine.
Finally, on the new machine go into the .node-red folder and run npm install
which will install all the additional nodes you had installed. It uses information from the file package.json to do that.
Then restart node-red.
Hi Colin,
thank you very much, you saved my day!
Following your instructions I have now NR running in mac mini M4. There are some minor glitches (python scripts with missing libraries), but now the most important thing is that rebooting the mac NR won't start. I have to open the terminal and launching node-red command, where as I installed mosquitto with homebrew and configured as a service with autostart on reboot.
Do you know if using homebrew or other utility I will be able to autostart NR on reboot?