Runbooks
Overview
Runbook 1: Validator Restart
# Check current status curl -s http://localhost:26657/status | jq '.result.sync_info' # Check validator signing # Note: Set $VALCONS if not already set (see "Checking Validator Status" section) evmd query slashing signing-info $VALCONS --node http://localhost:26657sudo systemctl stop evmd # Verify stopped ps aux | grep evmd# Update binary if needed make install # Verify new version evmd versionsudo systemctl start evmd# Check service status sudo systemctl status evmd # Monitor logs for 2 minutes sudo journalctl -u evmd -f --output cat # Verify syncing curl -s http://localhost:26657/status | jq '.result.sync_info.catching_up' # Check signing (VALCONS should already be set from "Checking Validator Status" section) sleep 60 evmd query slashing signing-info $VALCONS --node http://localhost:26657
Runbook 2: Consensus Failure Recovery
Runbook 3: Reward Claim Failure Resolution
Runbook 4: Emergency Validator Shutdown
Next Steps
Last updated