41 lines
1023 B
Markdown
41 lines
1023 B
Markdown
# BACKUP UTILITY "pg_dump" PATH SETTING
|
|
|
|
This setting controls where AyaNova will find the PostgreSQL pg_dump utility used forautomated backups.
|
|
|
|
## Default
|
|
|
|
Default is empty.
|
|
|
|
If no override is specified AyaNova will assume the utility is on the environment PATH.
|
|
|
|
## Overriding
|
|
|
|
AyaNova expects the pg_dump utility path to be provided by a config.json property, environment variable or command line parameter named
|
|
|
|
`AYANOVA_BACKUP_PG_DUMP_PATH`
|
|
|
|
The value specified should be a string containing a fully qualified file path to the pg_dump utility.
|
|
|
|
Example config.json entry
|
|
|
|
```json
|
|
{
|
|
...other properties...
|
|
"AYANOVA_BACKUP_PG_DUMP_PATH": "/usr/lib/postgresql/14.1/bin/"
|
|
}
|
|
```
|
|
|
|
Example command line parameter
|
|
|
|
`ayanova.exe --AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real)
|
|
|
|
Example environment variable
|
|
|
|
Windows
|
|
|
|
`set "AYANOVA_BACKUP_PG_DUMP_PATH=c:\Program files\postgresql\14.1\bin"` (not real)
|
|
|
|
Linux / MAC
|
|
|
|
`export AYANOVA_BACKUP_PG_DUMP_PATH="/usr/lib/postgresql/14.1/bin/"` (not real)
|