NetworkRun a full node
Run the node
Start nolusd (with or without Cosmovisor), check sync status, tail logs.
Without Cosmovisor
nolusd startWith Cosmovisor
Enable and start the service you created earlier:
sudo systemctl daemon-reload
sudo systemctl enable cosmovisor
sudo systemctl start cosmovisorCheck status:
sudo systemctl status cosmovisorTail logs:
journalctl -u cosmovisor -fCheck sync status
Once nolusd is running, the chain starts syncing. Sync time varies with
your setup and the current chain size and can be very long without a
snapshot.
curl http://localhost:26657/status | jq .result.sync_info.catching_uptrue- still syncing.false- caught up. Your node is now ready, and you can promote it to a validator.