Lava Node Setup
Follow this guide to run your own LavaNet node and use it for your Lava Provider.
Set Node name
MONIKER="my_node"Install dependencies
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgradeInstall GO
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.22.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)
go versionDownload and build binaries
Install Cosmovisor and create a service
Initialize the node
Update chain-specific configuration
Set Ports
Download latest chain snapshot
Setup Firewall
Start service and check the logs
Check sync status

Archive Snapshot
Last updated