Node Management

Check logs

sudo journalctl -u elys -f -o cat

Start service

sudo systemctl start elys

Stop service

sudo systemctl stop elys

Restart service

sudo systemctl restart elys

Check service status

sudo systemctl status elys

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable elys

Disable Service

sudo systemctl disable elys

Sync info

elysd status 2>&1 | jq .SyncInfo

Node info

elysd status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated