Advertisement
Guest User

Untitled

a guest
Jun 8th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ####################################
  2. # SAMPLE.POSTGRESQL-WAL.PROPERTIES #
  3. ####################################
  4. #
  5. # This file contains properties for WAL-based PostgreQL replication.
  6. # PostgreSQL home directory.
  7. postgresql.data=/var/lib/pgsql/data
  8. # PostgreSQL configuration file.
  9. postgresql.conf=/var/lib/pgsql/data/postgresql.conf
  10. # Standard archive log directory.
  11. postgresql.archive=/var/lib/pgsql/archive
  12. # Master host name.
  13. postgresql.master.host=
  14. # Master database administrator user name and password.
  15. postgresql.master.user=postgres
  16. postgresql.master.password=
  17. # Database role. Acceptable values are 'master' and 'standby'.
  18. postgresql.role=master
  19. # PostgreSQL boot command. The postgres user must be able to execute
  20. # this command without a password. The script must accept standard
  21. # stop/start/restart options.
  22. postgresql.boot.script=/etc/init.d/postgresql
  23. # Archive timeout. Maximum time before sending an unfilled WAL buffer to
  24. # standby. This is your maximum data loss.
  25. postgresql.archive_timeout=60
  26. # Location of pg_standby executable.
  27. postgresql.pg_standby=pg_standby
  28. # Location of pg_standby trigger file.
  29. postgresql.pg_standby.trigger=/tmp/pgsql.trigger
  30. # Command prefix used for root commands. 'sudo' is most common for
  31. # non-priveged accounts.
  32. postgresql.root.prefix=sudo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement