Lumera

Lumera Installation Guide

Prerequisites

  • A fresh Linux-based server (Ubuntu recommended)

  • curl, wget, tar, and systemd installed

  • Root or sudo privileges


1. Install Golang

sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.23.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.23.4.linux-amd64.tar.gz
rm go1.23.4.linux-amd64.tar.gz

echo 'export GOROOT=/usr/local/go' >> ~/.bash_profile
echo 'export GOPATH=$HOME/go' >> ~/.bash_profile
echo 'export GO111MODULE=on' >> ~/.bash_profile
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bash_profile
source ~/.bash_profile

#Check GO version 
go version

2. Download Lumera Binary


3. Set Up Cosmovisor


4. Initialize the Node


5. Download Address Book


6. Configure config.toml and app.toml


7. Create Systemd Service


8. (Optional) Reset and Restore from Snapshot


  1. Check Node Sync


Useful Commands

  • Check logs: journalctl -u lumerad -f

  • Restart node: sudo systemctl restart lumerad

  • Stop node: sudo systemctl stop lumerad

  • Start node: sudo systemctl start lumerad

  • Node info: lumerad status or lumerad tendermint show-node-id


Credits

Last updated