๐Ÿ” 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.

Last updated