๐ 5. Launch Your Renergy Node
With configuration complete, youโre ready to start your node and begin syncing with the network.
๐ฅ๏ธ Step 1: Set Up a Screen Session
Running your node inside a screen session allows it to stay active even after you disconnect.
sudo apt update
sudo apt install screen -y
screen -S renergy-node
This creates a dedicated terminal session for your node.
โถ๏ธ Step 2: Start the Node Process
Launch the Renergy node using the following command:
renergyd start --home "$HOME/.renergyMainnetNode"
Once started, the node will begin syncing blocks from the network.
โฑ๏ธ Step 3: Monitor Sync Progress
Youโll see synchronization logs in real time within the screen session.
To check sync status manually, open another terminal and run:
curl localhost:26657/status
Look for the catching_up field to switch from true to false, indicating full sync.
๐งญ Managing the Screen Session
๐ Detach from the screen safely: Ctrl + A + D
๐ Reattach later with: screen -r renergy-node
Your node will continue running in the background while detached.
Once fully synced, your node is actively connected to Renergy Blockchain and ready for validator operations.