Node Management
Check logs
sudo journalctl -u gnoland -f -o cat
Start service
sudo systemctl start gnoland
Stop service
sudo systemctl stop gnoland
Restart service
sudo systemctl restart gnoland
Check service status
sudo systemctl status gnoland
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable gnoland
Disable Service
sudo systemctl disable gnoland
Sync info
curl -s http://localhost:32557/status | jq -r .result.sync_info.catching_up
Node info
curl -s localhost:32557/status
Latest Block Info
curl -s localhost:32557/status | jq .result.sync_info.latest_block_height
a
Last updated