stop iris
if not stop iris= backup is not going to work.
after stopping the node
#Stop Iris
cd .iris
tar -czvf data.tar.gz data
#Now have a Backup file = data.tar.gz
#for applying the backup
cd .iris
rm -rf data
tar -xzf data.tar.gz
iris start
#the node have to start the sync from the last block from the backup file.
Note: if the backup is from a sentry or validator node it’s the same, works for all the nodes.
I have this backup file from today before the network upgrade, for donwload=
link here when is ready.
wget 'https://ipfs.io/ipfs/QmWg1EAL9mVUETuLN4yDAAS2GMwkiiwSunnVGwGJWBF7P5' -O data.tar.gz
or
wget 'https://gateway.ipfs.io/ipfs/QmWg1EAL9mVUETuLN4yDAAS2GMwkiiwSunnVGwGJWBF7P5' -O data.tar.gz
Directs links
https://ipfs.io/ipfs/QmWH9WNSkoU7EtjRRxR97Am9ayWqBk7AzvXRGBbKBmdQbo
https://ipfs.io/ipfs/QmWg1EAL9mVUETuLN4yDAAS2GMwkiiwSunnVGwGJWBF7P5
#for applying the backup from the IPSF node
#stop Iris
cd .iris
rm -rf data
wget 'https://gateway.ipfs.io/ipfs/QmWg1EAL9mVUETuLN4yDAAS2GMwkiiwSunnVGwGJWBF7P5' -O data.tar.gz
tar -xzf data.tar.gz
#remove the file if need disk space
rm -r data.tar.gz
iris start
Done!