Check logs
sudo journalctl -u router -f -o cat
Start service
sudo systemctl start router
Stop service
sudo systemctl stop router
Restart service
sudo systemctl restart router
Check service status
sudo systemctl status router
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable router
Disable Service
sudo systemctl disable router
Sync info
routerd status 2>&1 | jq .SyncInfo
Node info
routerd status 2>&1 | jq .NodeInfo
Latest Block Info
curl -s localhost:23757/status | jq .result.sync_info.latest_block_height
Your node peer
echo $(routerd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.routerd/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Last updated 17 days ago