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 -yInsall packages
sudo apt install curl lz4 tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu -yInstall 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 versioncd $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-appCopy genesis - Minimum gas prices - Addrbook
Seed - Peer
Create service
Check addr Validator
Snapshot
Check sync
If it is False => Create Validator
Last updated