Node Management

Check logs

sudo journalctl -u hippo -f -o cat

Start service

sudo systemctl start hippo

Stop service

sudo systemctl stop hippo

Restart service

sudo systemctl restart hippo

Check service status

sudo systemctl status hippo

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable hippo

Disable Service

sudo systemctl disable hippo

Sync info

hippod status 2>&1 | jq .SyncInfo

Node info

hippod status 2>&1 | jq .NodeInfo

Latest Block Info

curl -s localhost:31857/status | jq .result.sync_info.latest_block_height

Your node peer

echo $(hippod tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.hippo/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')

a

Last updated