Starting the Nodes
Start your stake pool with systemctl and begin syncing the blockchain!
sudo systemctl start cardano-node
Congratulations! Your nodes are running successfully. Synchronizing your local copies of the Cardano blockchain ledger with the network may take 24 hours, or more. As of April 2025, the size of the Cardano blockchain ledger is approximately 200 GB. Optionally, to restore and bootstrap a full node rapidly set up a Mithril Client
To monitor your Cardano nodes, install gLiveView.
cd $NODE_HOME
sudo apt install bc tcptraceroute jq -y
curl -s -o gLiveView.sh https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/gLiveView.sh
curl -s -o env https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/env
chmod 755 gLiveView.sh
To modify env with the updated file locations, type the following command where <ConfigFileName>
is config-bp.json
on your block-producing node and config.json
on all your relay nodes
sed -i env \
-e "s/\#CONFIG=\"\${CNODE_HOME}\/files\/config.json\"/CONFIG=\"\${NODE_HOME}\/<ConfigFileName>\"/g" \
-e "s/\#SOCKET=\"\${CNODE_HOME}\/sockets\/node.socket\"/SOCKET=\"\${NODE_HOME}\/db\/socket\"/g"
A node must synchronize to epoch 208 (Shelley launch) before gLiveView.sh can start tracking the synchronization process. Before your node synchronizes to epoch 208, you can track node synchronization using the following command:
journalctl --unit=cardano-node --follow
Run gLiveView to monitor the progress of the local Cardano Node synchronizing with the blockchain.
./gLiveView.sh
The following figure illustrates sample output of the gLiveView dashboard when Cardano Node is operating as a relay.

Last updated