Skip to content

mztacat/Redbelly-Node-Deployment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

Redbelly-Node-Deployment (updating . . . )

Remodification of ( @HerculesNode ) in conjuction with Official Docs


Minimum Hardware Requirements

  • CPU: 8-core CPU or equivalent
  • Architecture: x86-64 (also known as x64, x86_64, AMD64, and Intel 64)
  • RAM: 16 GB of RAM
  • Operating System: Ubuntu 22.04.2 LTS or later (x86-64 compatible)
  • Storage: 1 TB
  • Network Bandwidth: 40 Mbps with a stable connection

Updates and Installation 🫡

To set up your Redbelly Node, run the following commands in your terminal:

sudo apt update
sudo apt install screen snapd net-tools cron curl unzip
sudo DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
sudo snap install --classic certbot
sudo ln -s /snap/bin/certbot /usr/bin/certbot

Create Screen & continue

screen -S red
email=your_email@example.com
fqn=example.xyz
sudo certbot certonly --standalone -d $fqn. --non-interactive --agree-tos -m $email
sudo chown -R $USER:$USER /etc/letsencrypt/

image

Set your email (replace 'your_email@example.com' with your actual email)

Set your Fully Qualified Domain Name (replace 'example.xyz' with your actual domain)

image

Save the PATH to SSL, you will need this later

image

Firewall Configuration

sudo ufw enable
sudo ufw allow 22
sudo ufw allow 80
sudo ufw allow 8545
sudo ufw allow 1888
sudo ufw allow 1111

Now go back to the mail you received for the node process

Click the Set up your account

image Redbelly Node Service Desk

FIll the form with this input in appropriate section

Create two metamask wallet ( we will be using the private key of the second one)

image

Node Url : domain name from namecheap Public address : first new metamask wallet Signing address : second new metamask wallet (private key of this needed) The below ports are recommended, however, make sure you supply the same port values in the node registration form which you will find in Node Registration defined in the next section:

  • 8545: HTTP-RPC port
  • 8546: WS-RPC port
  • 1111: Recovery port
  • 1888: Consensus port

WAIT TO RECEIVE ID AT THIS POINT ---- I AM ALSO WAITING FOR THAT ----

image


APPLICATION HAS BEEN APPROVED, LET'S PROCEED 🫡

image image

Take note of your Node ID


Configuring config.yaml

To configure the config.yaml file, open it using the nano text editor. Run the following command in your terminal:

nano config.yaml

Paste this

ip: <ENTER FULLY QUALIFIED DOMAIN NAME (FQDN) HERE>
id: <ENTER THE ID PROVIDED HERE>
genesisContracts:
  bootstrapContractsRegistryAddress: 0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5
consensusPort: 1888
grpcPort: 1111
privateKeyHex: <Private key for signing address for activity monitor>
poolConfig:
  initCap: 5
  maxCap: 30
  idleTimeout: 180
clientKeepAliveConfig:
  keepAliveTime: 1
  keepAliveTimeOut: 20
serverKeepAliveConfig:
  serverKeepAliveTime: 70
  serverKeepAliveTimeOut: 10
  minTime: 60
rpcPoolConfig:
  maxOpenCount: 1
  maxIdleCount: 1
  maxIdleTime: 30

Update the following parameters in the config.yaml file:

  • ip: Set it to your domain name from namecheap (example.xyz) depending on your configuration.
  • id: You will receive this ID by email after filling out the form. image
  • privateKeyHex: Use the private key of the wallet provided as the signing address in the form.

Ctrl + X and Y then [ENTER] to exit editor

Download Node resources HERE

Move to VPS root directory using the SFTP Method

image

Node Initialization

To initialize your Redbelly Node and create an observe.sh script, follow these steps:

  1. Create the observe.sh script using the touch command:

    touch observe.sh
  2. Open the observe.sh script in the vim text editor:

    vim observe.sh
  3. Within the vim editor, you can add your Node initialization script. Press i to enter insert mode, paste below script, and press Esc to exit insert mode.

  4. Save and exit the vim editor by typing :wq and pressing Enter.

  5. These steps will create an empty observe.sh script and open it in the vim editor for you to add your Node initialization script.

#!/bin/sh
# filename: observe.sh
if [ ! -d rbn ]; then
  echo "rbn doesnt exist. Initialising redbelly"
  mkdir -p rbn
  mkdir -p consensus
  cp config.yaml ./consensus

  ./binaries/rbbc init --datadir=rbn --standalone
  rm -rf ./rbn/database/chaindata
  rm -rf ./rbn/database/nodes
  cp genesis.json ./rbn/genesis
else
  echo "rbn already exists. continuing with existing setup"
  cp config.yaml ./consensus
fi

# Run EVM
rm -f log
./binaries/rbbc run --datadir=rbn --consensus.dir=consensus --tls --consensus.tls --tls.cert=<PATH TO SSL CERTIFICATE> --tls.key=<PATH TO SSL CERTIFICATE KEY> --http --http.addr=0.0.0.0 --http.corsdomain=* --http.vhosts=* --http.port=8545 --http.api eth,net,web3,rbn --ws --ws.addr=0.0.0.0 --ws.port=8546 --ws.origins="*" --ws.api eth,net,web3,rbn --threshold=200 --timeout=500 --logging.level info --mode production --consensus.type dbft --config.file config.yaml --bootstrap.tries=10 --bootstrap.wait=10 --recovery.tries=10 --recovery.wait=10
  • Replace PATH TO SSL CERTIFICATE
  • Replace PATH TO SSL CERTIFICATE KEY

Remember from this section (saved )

image

Replace with your SSL path ( see my sample replacement)

rm -f log
./binaries/rbbc run --datadir=rbn --consensus.dir=consensus --tls --consensus.tls --tls.cert=/etc/letsencrypt/live/red.mztacat.xyz/fullchain.pem --tls.key=/etc/letsencrypt/live/red.mztacat.xyz/privkey.pem --http --http.addr=0.0.0.0 --http.corsdomain=* --http.vhosts=* --http.port=8545 --http.api eth,net,web3,rbn --ws --ws.addr=0.0.0.0 --ws.port=8546 --ws.origins="*" --ws.api eth,net,web3,rbn --threshold=200 --timeout=500 --logging.level info --mode production --consensus.type dbft --config.file config.yaml --bootstrap.tries=10 --bootstrap.wait=10 --recovery.tries=10 --recovery.wait=10

Save and exit the vim editor by typing :wq and pressing Enter.

Creating and Editing start-rbn.sh

To create and edit the start-rbn.sh script, follow these steps:

  1. Create the start-rbn.sh script using the touch command:
    touch start-rbn.sh
  2. Open the start-rbn.sh script in the vim text editor:
    vim start-rbn.sh
#!/bin/sh
# filename: start-rbn.sh
mkdir -p binaries
mkdir -p consensus
chmod +x rbbc
cp rbbc binaries/rbbc
mkdir -p logs
nohup ./observe.sh > ./logs/rbbcLogs 2>&1 &
  1. Save and exit the vim editor by typing :wq and pressing Enter.

These steps will create an empty start-rbn.sh script and open it in the vim editor for you to add your Redbelly Node start script.

Make executable and RUN

chmod +x observe.sh
chmod +x start-rbn.sh
./start-rbn.sh

Check LOGS

tail -f $HOME/logs/rbbcLogs

image

Request FAUCET form Discord

image

  • Use the signing addres for faucet

Add Redbelly Network to Metamask

image

image

Enter the following network details:

About

Codes to setup Redbelly Node for those choosen for Node deployment

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published