Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The following instructions will demonstrate the process of deploying a full node on Binance Smart Chain using the Erigon Ethereum client.

Resources:

00 Prerequisites

0.1 System Requirements

Specification

Minimum Requirement

Used for Demo

Processor(s)

≥ 16-Core

16-Core

Free Disk Space

≥ 2 TB

7.68 TB

RAM

≥ 64 GB

256 GB

Network Card

≥ 5 Mbps

1000 Mbps

0.2 Secure Shell (SSH)

What You’ll Need:

  1. Laptop or desktop computer running the latest version of MacOS, Windows, or Linux.
    Used for Demo: MacBook Pro running MacOS Monterey 12.2

  2. Terminal Emulator / SSH Client

  3. Login credentials for the server being accessed.

01 Access the Server

Step 1: Open the terminal emulator. (e.g., Terminal, PuTTy, etc.)

Step 2: Enable SSH on the primary system:

$ sudo systemsetup -setremotelogin on
$ Password: *System Password*

Step 3: Access the Server via SSH:

$ ssh {username}@{ip.address}
$ Password: *User's Password*

02 Install Dependencies

$ sudo apt-get update
$ sudo apt dist-upgrade -y
$ sudo apt autoremove -y
$ sudo apt install git
$ sudo apt install npm

  • No labels