Node Management

Check logs

sudo journalctl -u nibiru -f -o cat

Start service

sudo systemctl start nibiru

Stop service

sudo systemctl stop nibiru

Restart service

sudo systemctl restart nibiru

Check service status

sudo systemctl status nibiru

Reload services

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable nibiru

Disable Service

sudo systemctl disable nibiru

Sync info

nibid status 2>&1 | jq .SyncInfo

Node info

nibid status 2>&1 | jq .NodeInfo

Latest Block Info

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

Your node peer

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

a

Last updated