Join mainnet - Manual setup with Cosmovisor
Prerequisites
- Verify hardware requirements are met
- Install package dependencies
- Note: You may need to run as
sudo
- Required packages installation
### Packages installations
sudo apt update # in case of permissions error, try running with sudo
sudo apt install -y unzip logrotate git jq lz4 sed wget curl coreutils systemd
# Create the temp dir for the installation
temp_folder=$(mktemp -d) && cd $temp_folder - Go installation
### Configurations
go_package_url="https://go.dev/dl/go1.20.5.linux-amd64.tar.gz"
go_package_file_name=${go_package_url##*\/}
# Download GO
wget -q $go_package_url
# Unpack the GO installation file
sudo tar -C /usr/local -xzf $go_package_file_name
# Environment adjustments
echo "export PATH=\$PATH:/usr/local/go/bin" >>~/.profile
echo "export PATH=\$PATH:\$(go env GOPATH)/bin" >>~/.profile
source ~/.profile - Installation verifications
- You can verify the installed go version by running:
go version
- The command
go env GOPATH
should include$HOME/go
If not, then,export GOPATH=$HOME/go
- PATH should include
$HOME/go/bin
To verify PATH, runecho $PATH
- You can verify the installed go version by running:
- Note: You may need to run as
1. Set up the Lava node
The following sections will describe how to install Cosmovisor for automating the upgrades process.
Set up Cosmovisor
Set up cosmovisor to ensure any future upgrades happen flawlessly. To install Cosmovisor:
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/[email protected]
# Create the Cosmovisor folder and copy config files to it
export lava_home_folder="$HOME/.lava"
mkdir -p $lava_home_folder/cosmovisor/genesis/bin/
# Download the genesis binary
wget -O $lava_home_folder/cosmovisor/genesis/bin/lavad "https://github.com/lavanet/lava/releases/download/v0.33.0/lavad-v0.33.0-linux-amd64"
chmod +x $lava_home_folder/cosmovisor/genesis/bin/lavad# Set the environment variables
echo "# Setup Cosmovisor" >> ~/.profile
echo "export DAEMON_NAME=lavad" >> ~/.profile
echo "export CHAIN_ID=lava-mainnet-1" >> ~/.profile
echo "export DAEMON_HOME=$lava_home_folder" >> ~/.profile
echo "export DAEMON_ALLOW_DOWNLOAD_BINARIES=true" >> ~/.profile
echo "export DAEMON_LOG_BUFFER_SIZE=512" >> ~/.profile
echo "export DAEMON_RESTART_AFTER_UPGRADE=true" >> ~/.profile
echo "export UNSAFE_SKIP_BACKUP=true" >> ~/.profile
source ~/.profile# Initialize the chain
$lava_home_folder/cosmovisor/genesis/bin/lavad init \
my-node \
--chain-id lava-mainnet-1 \
--home $lava_home_foldercautionPlease note that cosmovisor will throw an error ⚠️ This is ok. The following error will be thrown, lstat /home/ubuntu/.lava/cosmovisor/current/upgrade-info.json: no such file or directorycosmovisor version
Create the Cosmovisor systemd unit file
echo "[Unit]
Description=Cosmovisor daemon
After=network-online.target
[Service]
Environment="DAEMON_NAME=lavad"
Environment="DAEMON_HOME=$lava_home_folder"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=true"
Environment="DAEMON_LOG_BUFFER_SIZE=512"
Environment="UNSAFE_SKIP_BACKUP=true"
User=$USER
ExecStart=${HOME}/go/bin/cosmovisor start --home=$lava_home_folder
Restart=always
RestartSec=3
LimitNOFILE=infinity
LimitNPROC=infinity
[Install]
WantedBy=multi-user.target
" > cosmovisor.service
sudo mv cosmovisor.service /lib/systemd/system/cosmovisor.service
Download the genesis file
Set the genesis file in the configuration folder
curl -Ls https://storage.googleapis.com/lavanet-public-asssets/tge/genesis.json > $lava_home_folder/config/genesis.json
Set up configuration files
# Assuming lava is installed in it's default folder
# Determine OS
os_name=$(uname)
case "$(uname)" in
Darwin)
SED_INLINE="-i ''" ;;
Linux)
SED_INLINE="-i" ;;
*)
echo "unknown system: $(uname)"
exit 1 ;;
esac
# Edit config.toml file
sed $SED_INLINE \
-e 's|^timeout_propose =.*|timeout_propose = "10s"|' \
-e 's|^timeout_propose_delta =.*|timeout_propose_delta = "500ms"|' \
-e 's|^timeout_prevote =.*|timeout_prevote = "1s"|' \
-e 's|^timeout_prevote_delta =.*|timeout_prevote_delta = "500ms"|' \
-e 's|^timeout_precommit =.*|timeout_precommit = "500ms"|' \
-e 's|^timeout_precommit_delta =.*|timeout_precommit_delta = "1s"|' \
-e 's|^timeout_commit =.*|timeout_commit = "15s"|' \
-e 's|^create_empty_blocks =.*|create_empty_blocks = true|' \
-e 's|^create_empty_blocks_interval =.*|create_empty_blocks_interval = "15s"|' \
-e 's|^timeout_broadcast_tx_commit =.*|timeout_broadcast_tx_commit = "151s"|' \
-e 's|^skip_timeout_commit =.*|skip_timeout_commit = false|' \
$lava_home_folder/config/config.toml
# Edit app.toml file
sed $SED_INLINE \
-e 's|^pruning = .*|pruning = "nothing"|' \
-e "s|enable = .*|enable = true|" \
-e 's|^minimum-gas-prices = .*|minimum-gas-prices = "0.000000001ulava"|' \
$lava_home_folder/config/app.tomlConfigure external seeds
SEEDS="ebacd3e666003397fb685cd44956d33419219950@seed2.lava.chainlayer.net:26656,[email protected]:26656,[email protected]:26666,e4eb68c6fdfab1575b8794205caed47d4f737df4@lava-mainnet-seed.01node.com:26107,[email protected]:11156,[email protected]:26656,[email protected]:26656,[email protected]:26649,[email protected]:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $lava_home_folder/config/config.toml
Download the latest Lava data snapshot (optional)
Coming soon
Enable and start the Cosmovisor service
- Configure the Cosmovisor service to run on boot, and start it
# Enable the cosmovisor service so that it will start automatically when the system boots
sudo systemctl daemon-reload
sudo systemctl enable cosmovisor.service
sudo systemctl restart systemd-journald
sudo systemctl start cosmovisor
3. Verify
Verify cosmovisor
setup
Make sure cosmovisor
is running by checking the state of the cosmovisor service:
Check the status of the service
sudo systemctl status cosmovisor
To view the service logs - to escape, hit CTRL+C
sudo journalctl -u cosmovisor -f
Verify node status
Note the location of lavad
now exists under cosmovisor
path:
# Check if the node is currently in the process of catching up
$HOME/.lava/cosmovisor/current/bin/lavad status | jq .SyncInfo.catching_up
Welcome to Lava Mainnet 🌋
You are now running a Node in the Lava network 🎉🥳!
Congrats, happy to have you here 😻 Celebrate it with us on Discord.
When you're ready, start putting the node to use as a validator: