Multiple nodes on DietPi Dashboard

Am I crazy or I don’t get at all how to access a node from the web interface? I have one full install on a machine, a backend node on the other but… What do I have to do from there ? :thinking: :wink:

additional nodes would need to be added manually into config file

nano /opt/dietpi-dashboard/config.toml

on bottom add your nodes like

nodes = ["192.168.x.x:5252"]

restart the dashboard

systemctl restart dietpi-dashboard.service
1 Like

Perfect! Thank you, it’s working perfectly !

N00b question…
To add multiple nodes, do I do a line seperate line for each one?

simply follow the example as given in the configuration file and put them into same line next to each other.

Like this?

nodes = ["192.168.x.x:5252","192.168.x.x:5252","192.168.x.x:5252"]

is this correct?

Yes.

# For example: ["example.com:5252", "192.168.1.60:4386"]
2 Likes