Manual
Node Technical Requirements
Node Specifications
These are some recommended specs to a Engram Network node.
Archive Node
2 CPUs
4 GB Memory
100+ GB Data Disk
Snap Node
4 CPUs
8 GB Memory
300+ GB Data Disk
Full Node
8 CPUs
16 GB Memory
500+ GB Data Disk
Operating System
Engram Network nodes have been developed and tested on x86_64 architecture. Our binary files have been compiled with Ubuntu 22.04 LTS x86_64 & 20.04 LTS x86_64. This guide assumes you are using Ubuntu 22.04 or 20.04 LTS. If you are using a different OS you may need to make some adjustments.
Getting Started
Set Limits on Open Files and Number of Processes
To better manage the resources of your nodes, we recommend setting some limits on the maximum number of open file descriptors (nofile) and maximum number of processes (nproc).
Edit /etc/security/limits.conf
to include or modify the following parameters:
Edit /etc/sysctl.conf
to include the following:
Steps to Run a Tokio Node
Install Necessary Dependencies:
Start by updating your system and installing required dependencies:
Installing Golang:
Clone the repository Engram Genesis Spec:
Install Geth Client:
Systemd
Create a Configuration Execution File:
Create a systemd service config file to configure the execution node service. Paste the following service configuration into the file. Exit and save once done (Ctrl + X, Y, Enter).
Run the Execution Node:
Start the Execution node using the configuration file you created reload systemd to reflect the changes and start the service. Check status to make sure it’s running correctly.
You can watch the live messages from your Geth node logs using this command. Make sure nothing suspicious shows up in your logs.
Press Ctrl + C to stop showing those messages.
Adding Peer:
Access the Console: Open a terminal window and connect to your Engram node's console. You can usually do this by running:
Please refer to all public Tokio Bootnodes Here
After you add public tokio bootnodes, you need to see your static peer whether it has connected and joined the engram network or is still in the queue. you can utilize the geth command as follows:
After you add peers to the engram node, the static peers in your geth will change from static=0 to static=1 which means that the public bootnodes of engram accept your node's request to join the network.
Configuring Beacon Node
Start by updating your system and installing required dependencies:
Create a Configuration Beacon File:
Create a systemd service config file to configure the execution node service. Paste the following service configuration into the file. Exit and save once done (Ctrl + X, Y, Enter).
Run the Beacon Node:
Start the Beacon node using the configuration file you created reload systemd to reflect the changes and start the service. Check status to make sure it’s running correctly.
You can watch the live messages from your beacon node logs using this command. Make sure nothing suspicious shows up in your logs.
Press Ctrl + C to stop showing those messages.
After the execution network and consensus network have connected and joined the engram network, your node will automatically synchronize all the databases from the engram, wait until everything is synchronized and take the last block of events.
Last updated