I have an Ubuntu server running with a Hyperledger Besu node working, but if I disconnect from the server, my best nodes stop working, and I have to start all nodes again.
How can I do to my Besu nodes keep running always? even if I got disconnected from ssh
Enable Bezu Nodes as services.
Example:
Create service /vol/hbesu/node2/besu-node2.service:
sudo cp /vol/hbesu/node2/besu-node2.service /usr/lib/systemd/system/
Start service:
sudo systemctl daemon-reload
sudo systemctl enable besu-node2.service
sudo systemctl start besu-node2.service
sudo systemctl status -l besu-node2.service