Snapshots are taken automatically every 1 week.
Heimdall Mainnet
1 - Stop the service and reset the data.
systemctl stop heimdalld.service
rm -rf /var/lib/heimdall/data
2 - Download the heimdall manifest file.
wget https://snapshots.stakepool.dev.br/heimdall/heimdall-mainnet.txt
3 - Run:
sudo mkdir -p data && cd data && sudo aria2c -j 22 -x 16 -s 32 --disk-cache=1024M --file-allocation=falloc --timeout=30 --retry-wait=5 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ../heimdall-mainnet.txt && sudo chown -R heimdall:nogroup ./
4 - Move the data directory.
mv data /var/lib/heimdall
5 - Restart the service and check the log
systemctl start heimdalld.service && journalctl -u heimdalld.service -f -o cat
Bor Mainnet
1 - Stop the service and reset the chaindata
systemctl stop bor.service
rm -rf /var/lib/bor/data/bor/chaindata
2 - Download the bor manifest file.
wget https://snapshots.stakepool.dev.br/bor-mainnet.txt
3 - Run:
sudo mkdir -p chaindata && cd chaindata && sudo aria2c -j 22 -x 16 -s 32 --disk-cache=1024M --file-allocation=falloc --timeout=30 --retry-wait=5 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ../bor-mainnet.txt && sudo chown -R bor:nogroup ./
4 - Move the chaindata directory.
mv chaindata /var/lib/bor/data/bor
5 - Restart the service and check the log.
systemctl start bor.service && journalctl -u bor.service -f -o cat