If you have generated an SSH key for your server or downloaded one from your Cloud hosting provider (e.g. AWS)
MacOS
cd ./{path to the folder to which the key pair file was downloaded}
chmod 400 {key pair file name}
ssh -i {key pair file name} ubuntu@{instance public IP you took from AWS}
Windows
cd /{path to the folder to which the key pair file was downloaded}
ssh -i {key pair file name} ubuntu@{instance public IP you took from AWS}
Docker (Optional)
If you choose to use Docker to launch the SSV Node, another fundamental pre-requisite is to have Docker installed on the machine hosting the SSV Node. In order to do so, please refer to the official Docker documentation, and find the option that better fits your server configuration.
NOTE:
In order to run the SSV Node, in a server, only Docker engine is necessary, you can still go ahead and install Docker Desktop, but it will not be necessary unless you plan to use the Graphical Interface.
Golang (optional)
If you choose to build the project from source, you will need to have Go programming language binaries installed.
Once you're connected and have the command line opened, the next steps describe how to configure and run the SSV Node to create keys and start your SSV Node. If you run into some issues while running the node, try and take a look at the troubleshooting page.
Generate Operator Keys (Encrypted)
The most secure way to run your Operator node, is to generate an Encrypted key pair. This way, your Public Key (PK) and Secret Key (SK) will be encrypted with a password of your choosing.
Password file
You will need to create a file (named password in this example) containing the password you chose for your Secret Key:
echo"<MY_OPERATOR_PASSWORD>">>password
Key pair generation and encryption
The node Docker image will generate keys for you, then encrypt them with a password you provide, using the following command:
<PATH_TO_PASSWORD> should be changed to a path to file, e.g. /path/to/password
A prerequisite for this is to have go version 1.22 installed on the system, and an optional requirement is to have the make tool installed as well (alternatively you could run the corresponding command defined in the Makefile).
Clone repository
Clone the ssv-dkg repository in your local machine:
gitclonegit@github.com:ssvlabs/ssv.git
Build
From the project's root folder, run the following command:
makebuild
Generate keys
The node binary will generate keys for you, then encrypt them with a password you provide, using the following command:
Create backups of your encrypted_private_key.json and password files on a separate device. If any of these files are lost, you will not be able to access your operator ever again.
Create Configuration File
Copy the following config.yaml file, just be sure to replace all the placeholders (ETH2_NODE, ETH1_WEBSOCKET_ADDRESS, OPERATOR_SECRET_KEY, etc.) with actual values.
In particular, substitute ENCRYPTED_PRIVATE_KEY_JSON with the operator encrypted private key file generated above (e.g. encrypted_private_key.json) and PASSWORD_FILE with the file containing the password used to generate the encrypted key itself.
global:# Console output log level LogLevel:info# Debug logs file pathLogFilePath:./data/debug.log# Number of log files preserved, 500MB each (time duration depends on number of validators and other factors).# Roughly equates to half a day.# Increase if you want to preserve log files for longer. This would require more disk spaceLogFileBackups:10db:# Path to a persistent directory to store the node's database.Path:./data/dbssv:# The SSV network to join to# Mainnet = Network: mainnet (default)# Testnet = Network: holeskyNetwork:mainnetValidatorOptions:# default value is true# Requires the connected Beacon node to be MEV-enabled.# Please see https://docs.ssv.network/operator-user-guides/operator-node/installation/configuring-mevBuilderProposals:falseeth2:# HTTP URL of the Beacon node to connect to.BeaconNodeAddr:<ETH2_NODE># e.g. http://example.url:5052eth1:# WebSocket URL of the Eth1 node to connect to.ETH1Addr:<ETH1_WEBSOCKET_ADDRESS># e.g. ws://example.url:8546/wsp2p:# Optionally provide the external IP address of the node, if it cannot be automatically determined.# HostAddress: 192.168.1.1# Optionally override the default TCP & UDP ports of the node.# TcpPort: 13001# UdpPort: 12001KeyStore:PrivateKeyFile:<ENCRYPTED_PRIVATE_KEY_JSON># e.g. ./encrypted_private_key.jsonPasswordFile:<PASSWORD_FILE># e.g. ./password# This enables monitoring at the specified port, see https://docs.ssv.network/run-a-node/operator-node/monitoringMetricsAPIPort:15000# This enables node health endpoint for troubleshooting, see https://docs.ssv.network/operator-user-guides/operator-node/maintenance/troubleshootingSSVAPIPort:16000
Make sure your ETH1Addr endpoint is communicating over WebSocket and not over HTTP in order to support subscriptions and notifications.
Start the Node
Do not run multiple instances of SSV Node with the same set Operator keys.
This does not increase validator resiliency and could lead to validator slashing.
Here is an example of a docker-compose.yml file, where <PATH_TO_CONFIG_YAML_FILE>, <PATH_TO_PASSWORD_FILE>, <PATH_TO_ENCRYPTED_KEY_FILE> are the paths to the config.yaml, password, encrypted_private_key.json files you have created in the previous steps:
Then run docker compose up command from the same directory as your docker-compose.yml.
This command will keep the terminal busy, showing the container's logs. It is useful to make sure that the tool start up sequence runs correctly.
You can detach the terminal at any time by hitting Ctrl-c key combination, or closing the terminal itself. The tool will be stopped, but it will restart automatically, thanks to the restart: "unless-stopped" startup parameter.
If you are sure that the tool works, and don't care about the logs, you can add the -d parameter right after docker compose up.
To start your node, run the following Docker command in the same folder you created the config.yaml file in the previous step:
This command will keep the terminal busy, showing the container's logs. It is useful to make sure that the node start up sequence runs correctly.
You can detach the terminal at any time by hitting Ctrl-c key combination, or closing the terminal itself. The node will be stopped, but it will restart automatically, thanks to the --restart unless-stopped startup parameter.
If you are sure that the node works, and don't care about the logs, you can add the -d parameter right after docker run.
If you have already created the operator keys using the compiled binary, then you can go ahead and launch the node. Otherwise, make sure to build from source first.
A prerequisite for this is to have go version 1.22 installed on the system, and an optional requirement is to have the make tool installed as well (alternatively you could run the corresponding command defined in the Makefile).
Clone repository
Clone the ssv-dkg repository in your local machine:
gitclonegit@github.com:ssvlabs/ssv.git
Build
From the project's root folder, run the following command:
makebuild
Launch the node
To start your node, run the following command:
./bin/ssvnode start-node
By default, the node expects the config file you have created in the previous step to be at this path ./config/config.yaml. If your setup is different, you can use the CONFIG_PATH environment variable to provide a custom path for the config file.
As a small note, this compiled binary could be used to launch the binary as a systemd service, for example.
Peer-to-peer ports configuration and firewall
When you set up your firewall on your SSV node machine, make sure to expose the ports that you set in the container creation command. The defaults are 12001 UDP and 13001 TCP; additional ones are 15000 TCP for Metrics and 16000 TCP for Health endpoint.
If you don't want to use the default ports, they can be changed in your config.yaml file. Be aware, the must be changed on the container creation command as well (simply changing the host port mappings on the Docker command isn't enough!).
You can also add your HostAddress to the config, which is the public static IP address of the machine.