Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. # Default values for pg_createcluster(8)
  2. # Occurrences of '%v' are replaced by the major version number,
  3. # and '%c' by the cluster name. Use '%%' for a literal '%'.
  4.  
  5. # Create a "main" cluster when a new postgresql-x.y server package is installed
  6. #create_main_cluster = true
  7.  
  8. # Default start.conf value, must be one of "auto", "manual", and "disabled".
  9. # See pg_createcluster(8) for more documentation.
  10. #start_conf = 'auto'
  11.  
  12. # Default data directory.
  13. data_directory = '/data/postgresql/%v/%c'
  14.  
  15. # Default directory for transaction logs
  16. # Unset by default, i.e. pg_xlog remains in the data directory.
  17. xlogdir = '/data/postgresql/xlog/%v/%c/pg_xlog'
  18.  
  19. # Options to pass to initdb.
  20. #initdb_options = ''
  21.  
  22. # The following options are copied into the new cluster's postgresql.conf:
  23.  
  24. # Enable SSL by default (using the "snakeoil" certificates installed by the
  25. # ssl-cert package, unless configured otherwise here)
  26. ssl = on
  27.  
  28. # Show cluster name in process title
  29. cluster_name = '%v/%c'
  30.  
  31. # Put stats_temp_directory on tmpfs
  32. stats_temp_directory = '/var/run/postgresql/%v-%c.pg_stat_tmp'
  33.  
  34. # Add prefix to log lines
  35. log_line_prefix = '%%t [%%p-%%l] %%q%%u@%%d '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement