scripts/postgresql_backup/README.md

17 lines
323 B
Markdown
Raw Normal View History

# Usage
## Authentication
Do not forget to create and/or edit `~/.pgpass` file providing all needed passwords for each host:
The format is the following:
```properties
hostname:port:database:username:password
```
Example
```properties
localhost:5432:*:postgres:pg_password_1
localhost:5433:*:postgres:pg_password_2
```