💾Node Installation

BeeZee Mainnet guide

  • Minimum hardware requirements:

Node Type
CPU
RAM
Storage

Mainnet

8

16GB

250GB

1) Auto_install script

wget -O beezzeed https://raw.githubusercontent.com/111STAVR111/props/main/BeeZee/beezzeed && chmod +x beezzeed && ./beezzeed

2) Manual installation

Preparing the server

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.23.1

cd $HOME
VER="1.23.1"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Build 27.11.25

bzed version --long | grep -e version -e commit

  • version: 8.0.0

  • commit: 7c0d9570ba6b2b5168308f5e4e80a103e807c8b2

Initiation

Create/recover wallet

Download Genesis

sha256sum $HOME/.bze/config/genesis.json

  • 83ebffb190577625c0c35be58e024f8e43d9313fe7941ba4fe082337b9ca3eb0

Set up the minimum gas price and Peers/Seeds/Filter peers/MaxPeers

Pruning (optional)

Indexer (optional)

Download addrbook

Create a service file

StateSync BeeZee Mainnet

SnapShot Mainnet updated every 5 hours

Start

Create validator

Monitoring

You can set up your node status alarm here - Monitoring

Security

You can create secure management of your wallet and your node by following this links.

TMKMS Wallet Security

Delete node

Last updated

Was this helpful?