Node Management
Check logs
sudo journalctl -u juno -f -o catStart service
sudo systemctl start junoStop service
sudo systemctl stop junoRestart service
sudo systemctl restart junoCheck service status
sudo systemctl status junoReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable junoDisable Service
sudo systemctl disable junoSync info
junod status 2>&1 | jq .SyncInfoNode info
junod status 2>&1 | jq .NodeInfoLatest Block Info
curl -s localhost:12657/status | jq .result.sync_info.latest_block_heightYour node peer
echo $(junod tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.juno/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')a
Last updated