top of page

IMPORTANT: These should only be used for testing purposes. For production, the best practice is to sync your node over the network from beginning.
 
Only recover from backups for production off of a private backup copy which you have created (CertHum does not use these backups and recovers from private copies.)
 
These backups are NOT endorsed by the Moonbeam Foundation or any other 3rd party.

DEPENDING ON WHICH CHAIN YOU ARE RECOVRING, YOU WILL NEED TO PURGE YOUR CHAIN
. FOLLOW THE MANUAL INSTRUCTIONS FROM MOONBEAM FOUNDATIONhttps://docs.moonbeam.network/node-operators/networks/run-a-node/systemd/#purge-your-node 
ALWAYS MAKE SURE YOU ARE USING THE CLIENT VERSION THAT MATCHES THE SNAPSHOT VERSION LISTED ABOVE
 

Moonriver Parachain RocksDB Backup (pruning=archive)

Moonriver Database Backup Direct DL Link
https://db.certhum.com/moonriver-backup-archive.tar.zst
ZST dict file (required):
https://db.certhum.com/moonriver-archive-sst.dict
 
#install zstd, wget both files and make sure to delete current contents of database directory if they exist, then extract to target.
ZSTD lets you specify how many processors you want to assign to the job. Check your MD5 before extracting!

sudo apt install zstd
sudo apt install aria2
aria2c -x10 https://db.certhum.com/moonriver-backup-archive.tar.zst

wget -O moonriver-archive-sst.dict https://db.certhum.com/moonriver-archive-sst.dict

sudo tar -I 'zstd -vd -T0 -D YOUR-PATH/moonriver-archive-sst.dict' -xvf moonriver-backup-archive.tar.zst -C /var/lib/moonriver-data/chains/moonriver/db --strip-components=6

Moonriver Parachain RocksDB Pruned (pruning=256)

Moonriver Database Backup Direct DL Link
https://db.certhum.com/moonriver-backup-256.tar.zst
ZST dict file (required):
https://db.certhum.com/moonriver-sst-256.dict
 
#install zstd, wget both files and make sure to delete current contents of database directory if they exist, then extract to target.
ZSTD lets you specify how many processors you want to assign to the job. Check your MD5 before extracting!

sudo apt install zstd
sudo apt install aria2
aria2c -x10 https://db.certhum.com/moonriver-backup-256.tar.zst

wget -O moonriver-sst-256.dict https://db.certhum.com/moonriver-sst-256.dict

sudo tar -I 'zstd -vd -T0 -D YOUR-PATH/moonriver-sst-256.dict' -xvf moonriver-backup-256.tar.zst -C /var/lib/moonriver-data/chains/moonriver/db --strip-components=6

bottom of page