For the complete documentation index, see llms.txt. This page is also available as Markdown.

Configuring and Running Beacon and ECDSA Nodes

1. Preparation

Launch the terminal of our server on the site where the server was created or through special programs described in the section:

Technical Requirements

2. Setting up Ubuntu

Update packages on the server to the latest versions:

sudo apt update && sudo apt upgrade -y

Install the git package if it is not installed on the server:

yes | sudo apt install git

Install Docker:

sudo apt install docker.io curl -y

Activate Docker:

sudo systemctl start docker
sudo systemctl enable docker

3. Firewall configuration

Open ports 22, 3919 and 3920 and activate the Firewall:

sudo ufw allow 22 && sudo ufw allow 3919 && sudo ufw allow 3920 && yes | sudo ufw enable

Check the status of open ports with the command:

4. Setting up nodes

First, download the repository to the github server with all the folders and configs for running two nodes with the command:

  1. In the commands below, replace "YOUR ETH ADDRESS" with the address of your ETH wallet.

  2. "YOUR PASSWORD" for the password from the ETH wallet.

  3. "CONTENT OF FILE UTC--2020-08-24T16-27-57" to the contents of the file downloaded when creating the ETH wallet.

  4. Enter all these commands.

It should look like this:

5. Write the export data of your Password and server IP to the .profile file by entering the commands:

6. Now we need to add in the config file INFURA ID from your account https://infura.io/ created earlier. Insert instead of "YOUR_INFURA_ID_BEACON_NODE" and "YOUR_INFURA_ID_ECDSA_NODE", respectively, the ID of the Beacon and ECDSA nodes.

It should look like this:

7. Now let's export the password with the command:

8. Everything is ready to go!

5. Launching a Beacon node

Launch the Bacon node with the command below:

6. Launching an ECDSA node

Launch the ECDSA node with the following command:

7. Stop and delete

The container can be stopped and removed using the following commands:

8. Important!

Updating a node

Last updated