Execution Clients

GethErigonBesu

Process - Changing Clients

  1. Stop old client.

  2. Disable old client.

  3. Delete old client data.

  4. Enable new client.

  5. Start new client.

UFW Config

Configure the firewall.

Execution Clients
EXECUTION_P2P_PORT=        # Default: 30303
EXECUTION_WS_PORT=         # Default: 8546
EXECUTION_METRICS_PORT=    # Default: 6060
EXECUTION_RPC_PORT=        # Default: 8545

sudo ufw allow ${EXECUTION_P2P_PORT} comment 'Allow Execution P2P in'
sudo ufw allow ${EXECUTION_WS_PORT} comment 'Allow Execution WS in'
sudo ufw allow ${EXECUTION_METRICS_PORT} comment 'Allow Execution Metrics in'
sudo ufw allow ${EXECUTION_RPC_PORT} comment 'Allow Execution RPC Port in'

Create JWT Secret

This is now shared between all clients on the same machine.

Execution Service Environment Variables

Last updated