Move out of Gitlab Wiki
[akkoma] / docs / admin / backup.md
1 # Backup your instance
2
3 1. Stop the Pleroma service.
4 2. Go to the working directory of Pleroma (default is `/opt/pleroma`)
5 3. Run `sudo -Hu postgres pg_dump -d <pleroma_db> --format=custom -f </path/to/backup_location/pleroma.pgdump>`
6 4. Copy `pleroma.pgdump`, `config/prod.secret.exs` and the `uploads` folder to your backup destination. If you have other modifications, copy those changes too.
7 5. Restart the Pleroma service.
8
9 ## Restore your instance
10
11 1. Stop the Pleroma service.
12 2. Go to the working directory of Pleroma (default is `/opt/pleroma`)
13 3. Copy the above mentioned files back to their original position.
14 4. Run `sudo -Hu postgres pg_restore -d <pleroma_db> -v -1 </path/to/backup_location/pleroma.pgdump>`
15 5. Restart the Pleroma service.