installation


description: Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.

Installation

Terra Classic
Terra Classic

Network name: Terra Classic | Chain ID: columbus-5 | Latest version: v2.1.1 | Custom Port: 256

Setup validator name

Replace YOUR_MONIKER_GOES_HERE with your validator name

MONIKER="YOUR_MONIKER_GOES_HERE"

Install dependencies

Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq zst build-essential
sudo apt -qy upgrade

Install Go

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.19.8.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)

Download and build binaries

# Clone project repository
cd $HOME
rm -rf terra
git clone https://github.com/classic-terra/core terra
cd terra
git checkout v2.1.1

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.terra/cosmovisor/genesis/bin
mv ~/go/bin/terrad $HOME/.terra/cosmovisor/genesis/bin/
rm -rf build

Install Cosmovisor and create a service

# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.4.0

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

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.terra
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.terra"
Environment="DAEMON_NAME=terrad"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.terra/cosmovisor/current/bin"

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable terrad

Initialize the node

# Set node configuration
terrad config chain-id columbus-5
terrad config node tcp://localhost:25657

# Initialize the node
terrad init $MONIKER --chain-id columbus-5

# Download genesis and addrbook
curl -Ls https://tfl-columbus-5.s3.amazonaws.com/genesis.json > $HOME/.terra/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/terra/addrbook.json > $HOME/.terra/config/addrbook.json

# Add seeds
seeds="ebc272824924ea1a27ea3183dd0b9ba713494f83@terraclassic-mainnet-seed.autostake.com:26676,b1bdf6249fb58b4c8284aff8a9c5b2804d822261@seed.terra.synergynodes.com:26656,65d86ab6024153286b823a3950e9055478effb04@terra.inotel.ro:26656,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.terra/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0uluna\"|" $HOME/.terra/config/app.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.terra/config/app.toml

# Set custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:25658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:25657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:25660\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:25656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":25666\"%" $HOME/.terra/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:25617\"%; s%^address = \":8080\"%address = \":25680\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:25690\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:25691\"%; s%:8545%:25645%; s%:8546%:25646%; s%:6065%:25665%" $HOME/.terra/config/app.toml

Start service and check the logs

sudo systemctl start terrad && sudo journalctl -u terrad -f --no-hostname -o cat

Sync

To catch up quickly, you can either use a snapshot or state sync

Last updated