Status checks
On this page you find various ways to check the status of your node.
p2p
-
Ensure your external address is set correctly:
curl -sS http://localhost:26657/status | jq .result.node_info.listen_addr
-
Ensure you have a few dozen peers here:
curl -sS http://localhost:26657/net_info | jq .result.n_peers
-
Ensure you have a mix of outbound and inbound peers (i.e. both outgoing and incoming connections work:
# Outbound peers curl -sS http://localhost:26657/net_info | jq '.result.peers | map(select(.is_outbound == true)) | length' # Inbound peers curl -sS http://localhost:26657/net_info | jq '.result.peers | map(select(.is_outbound == false)) | length'
Sync
- Check your height and catching up value:
curl -sS http://localhost:26657/status | jq .result.sync_info