Installation

Hardware requirements

The following hardware minimum requirements are recommended for running a validator node:

  • Memory: 8 GB RAM

  • CPU: 6 cores

  • Disk: 500 GB SSD Storage

  • Bandwidth: 1 Gbps for Download/1 Gbps for Upload

Update if needed

sudo apt update && sudo apt upgrade -y

Insall packages

sudo apt install curl lz4 tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu -y

Install GO

cd $HOME ver="1.21.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" echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile source $HOME/.bash_profile go version
cd $HOME
git clone https://github.com/celestiaorg/celestia-app.git
cd celestia-app
git checkout tags/v1.11.0 -b v1.11.0
make install
cd celestia-app

Copy genesis - Minimum gas prices - Addrbook

Seed - Peer

Create service

Check addr Validator

Snapshot

Check sync

If it is False => Create Validator

Last updated