Node Management

Check logs

sudo journalctl -u pell -f -o cat

Start service

sudo systemctl start pell

Stop service

sudo systemctl stop pell

Restart service

sudo systemctl restart pell

Check service status

sudo systemctl status pell

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable pell

Disable Service

sudo systemctl disable pell

Sync info

pellcored status 2>&1 | jq .SyncInfo

Node info

pellcored status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated