Horus 2 node

Server specifications

Specification
Requirement

CPU

2+ VCPU

RAM

4+ GB

Storage

40+ GB SSD

UBUNTU

20

Installing essentials components

Before diving into the installation of your node, it's essential to update your VPS. To do this, simply run the following command in your VPS terminal :

sudo apt-get update && sudo apt-get upgrade -y

Installing Docker

Run the following command in your terminal :

sudo apt install docker.io 

Check that Docker has been correctly installed :

docker --version 

Installing Geth

Geth is a command-line tool for running a node.

wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.8-b20b4a71.tar.gz

Extract the file :

Enter the Geth folder, and create your EVM wallet:

cd geth-linux-amd64-1.13.8-b20b4a71 ./geth account new --keystore ./keystore

Enter a password and keep it to one side, as you'll need it later. A wallet address will also be generated. Keep it to one side too.

Get the NuLink image docker :

Create a Nulink folder

Copy your private keys folder into the NuLink folder:

Give all permissions to your NuLink folder:

Node configuration

You'll start by defining a password for your operator.

In the next command, enter the password you created in the previous step :

In the next command, enter the EVM wallet you generate in the previous step :

In the next command, enter the Keystore name you generate in the previous step :

Node initialisation

Run the command :

This will generate a seed phrase. Keep it safe.

Node laucnh

Run your node with the following command :

Check the log

Last updated