Back to all services Back to all services
Axone logo

Axone

chainID: axone-1 MAINNET

Axone — Useful Commands

SystemD Operations

Reload systemd manager configuration

sudo systemctl daemon-reload

Enable service at boot

sudo systemctl enable axoned

Start node service

sudo systemctl start axoned

Restart node service

sudo systemctl restart axoned

Stop node service

sudo systemctl stop axoned

Check node service status

sudo systemctl status axoned

View live logs

sudo journalctl -u axoned -f --no-hostname -o cat

Node Information

Sync info

axoned status 2>&1 | jq .SyncInfo

Node info

axoned status 2>&1 | jq .NodeInfo

Node ID

axoned tendermint show-node-id

Validator details

axoned tendermint show-validator

Get full peer string

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