Node Management

Check logs

sudo journalctl -u tellor -f -o cat

Start service

sudo systemctl start tellor

Stop service

sudo systemctl stop tellor

Restart service

sudo systemctl restart tellor

Check service status

sudo systemctl status tellor

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable tellor

Disable Service

sudo systemctl disable tellor

Sync info

layerd status 2>&1 | jq .SyncInfo

Node info

layerd status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated