Node Management

Check logs

sudo journalctl -u titan -f -o cat

Start service

sudo systemctl start titan

Stop service

sudo systemctl stop titan

Restart service

sudo systemctl restart titan

Check service status

sudo systemctl status titan

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable titan

Disable Service

sudo systemctl disable titan

Sync info

titand status 2>&1 | jq .SyncInfo

Node info

titand status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated