How to synchronize your Shibarium Heimdall and Bor nodes using the latest snapshots for fast, reliable setup.
<snapshot_url>
with the actual URL provided there.Stop Heimdall Service
sudo systemctl stop heimdalld
Navigate to Heimdall Data Directory
cd /var/lib/heimdall/data/
Remove Existing Data (if necessary)
rm -rf application.db blockstore.db cs.wal evidence.db state.db tx_index.db
Download the Latest Snapshot
wget -c <snapshot_url>
Extract the Snapshot File
tar -zxvf <file>
Remove the Snapshot File
rm -rf <file>
Start Heimdall Service
sudo systemctl start heimdalld
Monitor Heimdall Service Logs
sudo journalctl -u heimdalld.service -f
Stop Bor Service
sudo systemctl stop bor
Navigate to Bor Data Directory
cd /var/lib/bor/data/bor/
Remove Existing Data (if necessary)
rm -rf LOCK chaindata/ lightchaindata/ nodes/ triecache/
Download the Latest Snapshot
wget -c <snapshot_url>
Extract the Snapshot File
tar -zxvf <file>
Remove the Snapshot File
rm -rf <file>
Start Bor Service
sudo systemctl start bor
Monitor Bor Service Logs
sudo journalctl -u bor.service -f
<snapshot_url>
with the actual URL of the snapshot file.<file>
with the actual filename of the downloaded snapshot.