1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00

Create database.backup

This commit is contained in:
Ivar Conradi Østhus 2016-12-20 11:11:36 +01:00 committed by GitHub
parent d1e809a9a4
commit 00d300cd42

16
docs/database.backup Normal file
View File

@ -0,0 +1,16 @@
# Datbase backups
When upgrading to new major version of Unleash it is advised to do a
full database backup to ease rollback in case of failures.
1. Create a database backup:
```
pg_dump --clean -U unleash_user -W -h localhost unleash > unleash-db.dump
```
2. Restore from a backup:
```
psql -U unleash_user -W -h localhost unleash < unleash-db.dump
```