Installation

v.1.11.0

Minimum hardware Requirements #

CPU : 4x CPUs
Ram : 8GB RAM 
Storage: 100GB of storage (SSD or NVME)

Setting Variables

echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export CELESTIA_CHAIN_ID="celestia"" >> $HOME/.bash_profile
echo "export CELESTIA_PORT="116"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="celestia-appd"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.celestia-app"" >> $HOME/.bash_profile
source $HOME/.bash_profile

Install dependencies

sudo apt update && sudo apt upgrade -y && sudo apt-get install make build-essential gcc git jq chrony lz4 tmux unzip bc -y && sudo apt install -y curl git jq lz4 build-essential unzip

INSTALL GO

ver="1.22.3" && \
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

# Adding Go's location to profile
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF

source $HOME/.profile
go version

Download and build binary

# Clone project repository
cd $HOME
rm -rf celestia-app
git clone https://github.com/celestiaorg/celestia-app.git 
cd celestia-app
git checkout v1.11.0

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.celestia-app/cosmovisor/genesis/bin
mv $HOME/go/bin/celestia-appd $HOME/.celestia-app/cosmovisor/genesis/bin/


# Create application symlinks
sudo ln -s $HOME/.celestia-app/cosmovisor/genesis $HOME/.celestia-app/cosmovisor/current -f
sudo ln -s $HOME/.celestia-app/cosmovisor/current/bin/celestia-appd /usr/local/bin/celestia-appd -f

Installing Cosmovisor

# Download and install Cosmovisor
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latest

# Create service
sudo tee /etc/systemd/system/celestia.service > /dev/null << EOF
[Unit]
Description=CELESTIA node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.celestia-app"
Environment="DAEMON_NAME=celestia-appd"
Environment="UNSAFE_SKIP_BACKUP=true"


[Install]
WantedBy=multi-user.target
EOF

# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable celestia.service

Initialize Node & Configuring Node Port

# Set node configuration
celestia-appd init $MONIKER --chain-id $CELESTIA_CHAIN_ID
celestia-appd config node tcp://localhost:$CELESTIA_PORT57
celestia-appd config keyring-backend os

# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${CELESTIA_PORT}57%g"  $HOME/.celestia-app/config/client.toml

# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${CELESTIA_PORT}17%g;
s%:8080%:${CELESTIA_PORT}80%g;
s%:9090%:${CELESTIA_PORT}90%g;
s%:9091%:${CELESTIA_PORT}91%g;
s%:8545%:${CELESTIA_PORT}45%g;
s%:8546%:${CELESTIA_PORT}46%g;
s%:6065%:${CELESTIA_PORT}65%g" $HOME/.celestia-app/config/app.toml

# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${CELESTIA_PORT}58%g;
s%:26657%:${CELESTIA_PORT}57%g;
s%:6060%:${CELESTIA_PORT}60%g;
s%:26656%:${CELESTIA_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${CELESTIA_PORT}56\"%;
s%:26660%:${CELESTIA_PORT}60%g" $HOME/.celestia-app/config/config.toml

# Download genesis and addrbook
wget -O $HOME/.celestia-app/config/genesis.json https://files.nodeshub.online/mainnet/celestia/genesis.json
wget -O $HOME/.celestia-app/config/addrbook.json https://files.nodeshub.online/mainnet/celestia/addrbook.json

# Add Seeds and Peers
SEEDS="6f6a3a908634b79b6fe7c4988efec2553f188234@celestia.seed.nodeshub.online:11656"
PEERS="d535cbf8d0efd9100649aa3f53cb5cbab33ef2d6@celestia-mainnet-peer.itrocket.net:40656,23b88ebcfb2177dbd2d8b2920c363a25e038e69a@89.58.61.213:2000,9a179402b03fa08f4b635439a0cd857184c87979@65.21.69.230:26656,e430bc9ed50fdb859a4556b3eb0beb2a1eeec616@213.239.205.211:43656,dafdad7fd23dfa60b061a817587df24ab88ab910@221.149.114.194:26656,bc81d0016c1676fd339d3a69ef9676ba148f81e0@139.64.137.122:35656,d47279e4f27e0c0cefdc40e99111affffa87c8e9@51.210.3.218:26656,905cecaaefc2ec59c0f383ff4e318baf9530e903@65.109.49.164:26000,14e09bbe1c157653b0ff862fab941e2bba31c56b@65.108.9.59:26010,fed121cc9450f5518f2441ee9e1168392027a117@135.181.236.8:36656,3911210547b03ff95b999f90a7dad8462318420c@65.109.53.22:43656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.celestia-app/config/config.toml

# Set minimum gas price, Enable prometheus and disable indexing
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.002utia\"|" $HOME/.celestia-app/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.celestia-app/config/config.toml
sed -i -e "s/prometheus = false/prometheus = true/" $HOME/.celestia-app/config/config.toml

# Set pruning and Indexer to Null
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.celestia-app/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.celestia-app/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"50\"/" $HOME/.celestia-app/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.celestia-app/config/config.toml  
  

Download Snapshot

# Back up priv_validator_state.json if needed
cp ~/.celestia-app/data/priv_validator_state.json  ~/.celestia-app/priv_validator_state.json

# On some tendermint chains
celestia-appd unsafe-reset-all --home $HOME/.celestia-app --keep-addr-book

# On other tendermint chains
celestia-appd tendermint unsafe-reset-all --home $HOME/.celestia-app --keep-addr-book

curl https://files.nodeshub.online/mainnet/celestia/snapshot/celestia-app/pruned/celestia-mainnet.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.celestia-app

mv $HOME/.celestia-app/priv_validator_state.json.backup $HOME/.celestia-app/data/priv_validator_state.json
sudo systemctl restart celestia && sudo journalctl -u celestia -f -o cat

Start service and check the logs

sudo systemctl start celestia.service && sudo journalctl -u celestia -f -o cat

Last updated