Check logs
sudo journalctl -u lumera -f -o cat
Start service
sudo systemctl start lumera
Stop service
sudo systemctl stop lumera
Restart service
sudo systemctl restart lumera
Check service status
sudo systemctl status lumera
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable lumera
Disable Service
sudo systemctl disable lumera
Sync info
lumerad status 2>&1 | jq .SyncInfo
Node info
lumerad status 2>&1 | jq .NodeInfo
Latest Block Info
curl -s localhost:30757/status | jq .result.sync_info.latest_block_height
Your node peer
echo $(lumerad tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.lumera/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Last updated 1 day ago