Skip to content

Install and Configure Validator

Andrei Montchik edited this page Apr 15, 2026 · 1 revision

Docs

Where is it?

Instructions

Tune up the Server

Configure firewall according to Solana recomendations

  1. Allow TCP/UDP connections for the port range 8000-10000: sudo ufw allow 8000:10000/tcp; sudo ufw allow 8000:10000/udp
  2. Deny TPC/UDP connections for the port 8899: sudo ufw deny 8899/tcp; sudo ufw deny 8899/udp
  3. Deny TPC/UDP connections for the port 8900: sudo ufw deny 8900/tcp; sudo ufw deny 8900/udp
  4. Enable ufw: sudo ufw enable
  5. Confirm that the configuration was applied: sudo ufw status

Create Validator Keypairs

  • the keypairs directory is ~/config/solana, keep the passphrase empty.
    • Validator Identify: solana-keygen new -o validator-keypair.devnet.json
    • Voter Keypair:
    • Authorized Withdrawer:

Create the Validator startup script

  • Known Validators and the endpoints can be found on the Solana Clusters page.
  • Example for Mainnet:
TBD

Clone this wiki locally