Backups
Pro only
Create backups via CLI
Self-Hosted
Backups can be created via a CLI command or an API request. The backup archive contains a database export and all uploaded files.
Execute following command to create a backup:
Create backup via CLI | |
---|---|
1 |
|
Backups can be encrypted using a 256-bit AES key.
Specify the key as hex string via the --key
CLI argument.
Create encrypted backup via CLI | |
---|---|
1 |
|
Create a backup during update
When updating SysReptor, you can use the --backup
switch, which will create a backup before applying the update.
Create backups via API
Cloud ยท Self-Hosted
Prerequisites
Creating backups is a high-privilege operation. Therefore, access to the backup API endpoint is restricted.
Only superusers
system
-users can access this endpoint in combination with a BACKUP_KEY
.
Regular users do not have access to the backup API endpoint.
Additionally, you need to configure a BACKUP_KEY
as environment variable.
This backup key has to be at least 20 characters long.
If no BACKUP_KEY
is configured, the backup API endpoint is disabled.
Optionally, the backup can be encrypted via a 256-bit AES key provided in the HTTP request body.
API Requests
1 2 3 4 5 |
|
Restore backups
Self-Hosted
Make sure that you have an empty database and empty data directories (i.e. empty docker volumes). Otherwise, you will lose your old data. During the backup restore, all existing data in the database and file storages is deleted.
It is recommended to import the backup into the same SysReptor version like the one that was used to create the backup. If a different version is used the database schema might not be compatible.
Restore backup via CLI | |
---|---|
1 |
|
Encrypted backups can be restored as well. Specify the AES key as hex string via the --key
CLI argument.
Restore encrypted backup via CLI | |
---|---|
1 |
|