Node Management

Check logs

sudo journalctl -u odiseo -f -o cat

Start service

sudo systemctl start odiseo

Stop service

sudo systemctl stop odiseo

Restart service

sudo systemctl restart odiseo

Check service status

sudo systemctl status odiseo

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable odiseo

Disable Service

sudo systemctl disable odiseo

Sync info

achillesd status 2>&1 | jq .SyncInfo

Node info

achillesd status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated