Node Management

Check logs

sudo journalctl -u furya -f -o cat

Start service

sudo systemctl start furya

Stop service

sudo systemctl stop furya

Restart service

sudo systemctl restart furya

Check service status

sudo systemctl status furya

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable furya

Disable Service

sudo systemctl disable furya

Sync info

furyad status 2>&1 | jq .SyncInfo

Node info

furyad status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated