Skip to content

Instantly share code, notes, and snippets.

@DevinNorgarb
Forked from aleskiontherun/pritunl-backup.sh
Created March 26, 2022 19:43
Show Gist options
  • Save DevinNorgarb/4ee27b6a2631c9d43270bc1bbe1f8db5 to your computer and use it in GitHub Desktop.
Save DevinNorgarb/4ee27b6a2631c9d43270bc1bbe1f8db5 to your computer and use it in GitHub Desktop.
Backup and restore Pritunl database.
sudo service pritunl stop
mongodump -d pritunl -o pritunl-bkp
tar -czvf pritunl-bkp.tar.gz pritunl-bkp
sudo service pritunl stop
mongo pritunl --eval 'db.dropDatabase()'
tar -xzf pritunl-bkp.tar.gz
mongorestore -d pritunl ./pritunl-bkp/pritunl/
sudo service pritunl start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment