Skip to main content

bootnode

Run Teku in bootnode-only mode.

network

teku bootnode --network=<NETWORK>

Predefined network configuration. The default is mainnet.

Possible values are:

NetworkChainTypeDescription
mainnetConsensus layerProductionMain network
holeskyConsensus layerTestMulti-client testnet
hoodiConsensus layerTestMulti-client testnet
ephemeryConsensus layerTestMulti-client testnet
sepoliaConsensus layerTestMulti-client testnet
minimalConsensus layerTestUsed for local testing and development networks
gnosisConsensus layerProductionNetwork for the Gnosis chain
chiadoConsensus layerTestGnosis testnet
luksoConsensus layerProductionNetwork for the Lukso chain

p2p-port

teku bootnode --p2p-port=<PORT>[,<PORT>...]...

The P2P listening ports (UDP and TCP). The default is 9000.

p2p-advertised-ip

teku bootnode --p2p-advertised-ip=<IP_ADDRESS>

The peer-to-peer IP address(es) to advertise. The default address is 127.0.0.1.

p2p-private-key-file

teku bootnode --p2p-private-key-file=<PATH_TO_FILE>

The file containing the node's private key.

If a file doesn't exist at the specified path, Teku creates a new file and P2P private key to store inside.

important

Ensure you specify the complete file path, including the file name, and not only the directory location.

config-file

teku bootnode --config-file=<FILE>

Path to the YAML configuration file. The default is none.

data-base-path, data-path

teku bootnode --data-base-path=<PATH>

Path to the Teku base directory for storage. The default directory is OS-dependent:

  • macOS: ~/Library/teku
  • Unix/Linux: $XDG_DATA_HOME/teku if $XDG_DATA_HOME is set; otherwise ~/.local/share/teku
  • Windows: %localappdata%\teku.

The default Docker image location is /root/.local/share/teku.

log-color-enabled

teku bootnode --log-color-enabled[=<BOOLEAN>]

Specify whether status and event log messages include a console color display code. The default is true.

log-destination

teku bootnode --log-destination=<LOG_DESTINATION>

Specify where to output log information. Valid options are:

  • BOTH
  • CONSOLE
  • DEFAULT_BOTH
  • FILE

The default is DEFAULT_BOTH. When using BOTH or DEFAULT_BOTH, system updates such as blockchain events are displayed on the console, and errors and other information are logged to a file. Specify the log file with the --log-file command-line option.

For production systems we recommend using the CONSOLE or FILE options to ensure all log information is available in one place.

note

Use DEFAULT_BOTH when using a custom Log4J2 configuration file. Any other option applies the custom logging changes on top of its default settings.