MariaDB
Environment variable
1 |
|
Note
Any environment variable that starts with "MARIADB_" will be handled as MariaDB. There can be multiple files paths definition for one ogion instance, for example MARIADB_FOO_MY_DB1
and MARIADB_BAR_MY_DB2
. All currently supported versions are also supported by ogion. Params must be included in value, splited by single space for example "value1=1 value2=foo"
.
Params
Name | Type | Description | Default |
---|---|---|---|
password | string[requried] | Mariadb database password. | - |
cron_rule | string[requried] | Cron expression for backups, see https://crontab.guru/ for help. | - |
user | string | Mariadb database username. | root |
host | string | Mariadb database hostname. | localhost |
port | int | Mariadb database port. | 3306 |
db | string | Mariadb database name. | mariadb |
max_backups | int | Soft limit how many backups can live at once for backup target. Defaults to 7 . This must makes sense with cron expression you use. For example if you want to have 7 day retention, and make backups at 5:00, max_backups=7 is fine, but if you make 4 backups per day, you would need max_backups=28 . Limit is soft and can be exceeded if no backup is older than value specified in min_retention_days. Min 1 and max 998 . Defaults to enviornment variable BACKUP_MAX_NUMBER, see Configuration. |
BACKUP_MAX_NUMBER |
min_retention_days | int | Hard minimum backups lifetime in days. Ogion won't ever delete files before, regardles of other options. Min 0 and max 36600 . Defaults to enviornment variable BACKUP_MIN_RETENTION_DAYS, see Configuration. |
BACKUP_MIN_RETENTION_DAYS |
Additional connection client params
Extra variables that starts with client_
will be passed AS IS to mariadb command underthehood as escaped lines in client section of .cnf
configuration file, see https://mariadb.com/kb/en/mariadb-command-line-client:
For example you can use it for SSL setup:
client_ssl=true
client_ssl-ca=path1
client_ssl-cert=path2
client_ssl-key=path3
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|