💡 Light Node Installation
Chain ID: celestia | Latest Version Tag: v0.28.4
Recommended Hardware:
Node Type
CPU
RAM
Storage
Mainnet
2
2GB
100GB
Install dependencies
# Update the repositories
sudo apt update && apt upgrade -y# Install developer packages
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y# Install Go
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.24.6.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go versionManual Installation
Create wallet
(Optional) Restore an existing cel_key
You can find the address by running the following command in the celestia-node directory
Add Consensus node RPC and gRPC ports
Create Service file
Enable and start service
Last updated