⚙️ Service Commands

Where’s the service name?

A sample from the Warden. wardend is a service name.

warden-example

Check Logs

sudo journalctl -u projectservicename -f -o cat

Restart Service

sudo systemctl restart projectservicename

Check Service Status

sudo systemctl status projectservicename

Stop Service

sudo systemctl stop projectservicename

Reload Services

sudo systemctl daemon-reload

Node Info

projectservicename status | jq

Disable Service

sudo systemctl disable projectservicename

Enable Service

sudo systemctl enable projectservicename

Synchronization status

if “true” - not synchronized, “false” - synchronized

projectservicename status | jq | grep "catching_up"