Node Management
Check logs
sudo journalctl -u router -f -o catStart service
sudo systemctl start routerStop service
sudo systemctl stop routerRestart service
sudo systemctl restart routerCheck service status
sudo systemctl status routerReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable routerDisable Service
sudo systemctl disable routerSync info
routerd status 2>&1 | jq .SyncInfoNode info
routerd status 2>&1 | jq .NodeInfoLatest Block Info
curl -s localhost:23757/status | jq .result.sync_info.latest_block_heightYour 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/".*//')a
Last updated