Node Management
Check logs
sudo journalctl -u odiseo -f -o catStart service
sudo systemctl start odiseoStop service
sudo systemctl stop odiseoRestart service
sudo systemctl restart odiseoCheck service status
sudo systemctl status odiseoReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable odiseoDisable Service
sudo systemctl disable odiseoSync info
achillesd status 2>&1 | jq .SyncInfoNode info
achillesd status 2>&1 | jq .NodeInfoLatest Block Info
curl -s localhost:31357/status | jq .result.sync_info.latest_block_heightYour 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