#lisk-snapshot
A bash script to automate backups for LISK blockchain
v0.2
##Requisites - This script works with postgres and lisk_db, configured with lisk user - You need to have sudo privileges • Open the sudo configuration sudo visudo • Add USERNAME ALL=(ALL) NOPASSWD: ALL under #includedir /etc/sudoers.d
##Installation Execute the following commands
cd ~/
git clone https://github.com/gregory0219998/lisk-snapshot
sudo visudo
USERNAME ALL=(ALL) NOPASSWD: ALL (add this under #includedir /etc/sudoers.d)
cd lisk-snapshot/
bash lisk-snapshot.sh help
##Available commands
- create
- restore
- log
- schedule
- hourly
- daily
- weekly
- monthly
###create
Command create is for create new snapshot, example of usage:
bash lisk-snapshot.sh create
Automaticly will create a snapshot file in new folder called snapshot/.
Don't require to stop you lisk node instance.
Example of output:
+ Creating snapshot
--------------------------------------------------
OK snapshot created successfully at block 49037 ( 43 MB).
Also will create a line in the log, there you can see your snapshot at what block height was created.
###restore
Command restore is for restore the last snapshot found it in snapshot/ folder.
Example of usage:
bash lisk-snapshot.sh restore
Automaticly will pick the last snapshot file in snapshot/ folder to restore the lisk_db.
If you want to restore a specific file please (for this version) delete or move the other files in snapshot/ folder.
You can use the log command to better pick up your restore file.
###log
Display all the snapshots created.
Example of usage:
bash lisk-snapshot.sh log
Example of output:
+ Snapshot Log
--------------------------------------------------
20-10-2016 - 20:59:06 -- Snapshot created successfully at block 48967 ( 43 MB)
20-10-2016 - 21:36:07 -- Snapshot created successfully at block 49037 ( 43 MB)
--------------------------------------------------END
###schedule Schedule snapshot creation periodically, with the available parameters:
- hourly
- daily
- weekly
- monthly
Example: bash lisk-snapshot.sh schedule daily
###Notice
You will have a folder in ~/lisk-snapshot/ called snapshot/
where all your snapshots will be created and stored.
If you want to use a snapshot from different place (official snapshot for example or other node) you will need to download the snapshot file (with prefix: lisk_db*) and copy it to the ~/lisk-snapshot/snapshot/
folder.
After you copy the lisk_db*.tar file you can restore the blockchain with: bash lisk-snapshot.sh restore
and will use the last file found in the snapshot/ folder.
If you use the schedule
command be aware you will have a log file located in ~/lisk-snapshot/cron.log
with this you will know what is happened with your schedule.