We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The file openshift-custom-postgresql.conf.template should be extended to allow remote connections for backups with the pg_basebackup tool.
openshift-custom-postgresql.conf.template
pg_basebackup
Error Message:
pg_basebackup: could not connect to server: FATAL: number of requested standby connections exceeds max_wal_senders (currently 0)
With this additional configuration, the backup works:
max_wal_senders = 5 wal_level = hot_standby archive_mode = on archive_command = '/bin/true'
The text was updated successfully, but these errors were encountered:
After #208 is merged in you will be able to extend the configuration file
Sorry, something went wrong.
This should be fixed by #208
Feel free to re-open if you run into any problems
hhorak
No branches or pull requests
The file
openshift-custom-postgresql.conf.template
should be extended to allow remote connections for backups with thepg_basebackup
tool.Error Message:
With this additional configuration, the backup works:
The text was updated successfully, but these errors were encountered: