Last active
February 19, 2024 15:31
-
-
Save aleskiontherun/c4cba180c61707ec208b7ca8766f686b to your computer and use it in GitHub Desktop.
Backup and restore Pritunl database.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo service pritunl stop | |
mongodump -d pritunl -o pritunl-bkp | |
tar -czvf pritunl-bkp.tar.gz pritunl-bkp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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