Guest User

Untitled

a guest
Mar 22nd, 2018
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1. PostgreSQL 9.2.4 on i686-pc-linux-gnu, compiled by gcc (SUSE Linux) 4.3.4 [gcc-4_3-branch revision 152973], 32-bit
  2.  
  3. hot_standby | on | configuration file
  4. listen_addresses | * | configuration file
  5. log_destination | syslog | configuration file
  6. log_min_duration_statement | -1 | configuration file
  7. log_min_error_statement | error | configuration file
  8. log_min_messages | notice | configuration file
  9. maintenance_work_mem | 512MB | configuration file
  10. max_connections | 300 | configuration file
  11. max_files_per_process | 1000 | configuration file
  12. max_prepared_transactions | 0 | configuration file
  13. max_stack_depth | 2MB | configuration file
  14. max_standby_streaming_delay | 10s | configuration file
  15. max_wal_senders | 10 | configuration file
  16. password_encryption | on | configuration file
  17. pg_stat_statements.max | 1000 | configuration file
  18. pg_stat_statements.save | on | configuration file
  19. pg_stat_statements.track | all | configuration file
  20. pg_stat_statements.track_utility | off | configuration file
  21. port | 5432 | configuration file
  22. random_page_cost | 2 | configuration file
  23. replication_timeout | 1min | configuration file
  24. seq_page_cost | 1 | configuration file
  25. shared_buffers | 512MB | configuration file
  26. shared_preload_libraries | pg_stat_statements | configuration file
  27. ssl | off | configuration file
  28. stats_temp_directory | pg_stat_tmp | configuration file
  29. superuser_reserved_connections | 20 | configuration file
  30. synchronous_commit | local | configuration file
  31. syslog_facility | local0 | configuration file
  32. syslog_ident | postgres | configuration file
  33. temp_buffers | 256MB | configuration file
  34. temp_file_limit | -1 | configuration file
  35. TimeZone | GMT | configuration file
  36. timezone_abbreviations | AlmostAll | configuration file
  37. track_activities | on | configuration file
  38. track_activity_query_size | 4096 | configuration file
  39. track_counts | on | configuration file
  40. track_functions | none | configuration file
  41. track_io_timing | on | configuration file
  42. unix_socket_directory | /var/run/postgresql | configuration file
  43. unix_socket_group | postgres | configuration file
  44. unix_socket_permissions | 0777 | configuration file
  45. update_process_title | on | configuration file
  46. vacuum_defer_cleanup_age | 0 | configuration file
  47. wal_buffers | 16MB | configuration file
  48. wal_keep_segments | 100 | configuration file
  49. wal_level | hot_standby | configuration file
  50. wal_receiver_status_interval | 5s | configuration file
  51. work_mem | 512MB | configuration file
  52. (69 rows)
  53.  
  54. PostgreSQL 8.4.14 on i686-pc-linux-gnu, compiled by GCC gcc (SUSE Linux) 4.3.4 [gcc-4_3-branch revision 152973], 32-bit
  55.  
  56. name | current_setting | source
  57. ---------------------------------+-----------------+----------------------
  58. autovacuum_analyze_scale_factor | 0.0005 | configuration file
  59. checkpoint_segments | 12 | configuration file
  60. checkpoint_warning | 0 | configuration file
  61. escape_string_warning | off | configuration file
  62. fsync | on | configuration file
  63. listen_addresses | * | configuration file
  64. log_destination | syslog | configuration file
  65. log_timezone | Europe/Zurich | command line
  66. maintenance_work_mem | 1GB | configuration file
  67. max_connections | 300 | configuration file
  68. max_stack_depth | 2MB | environment variable
  69. port | 5432 | configuration file
  70. shared_buffers | 32MB | configuration file
  71. standard_conforming_strings | off | configuration file
  72. syslog_facility | local0 | configuration file
  73. syslog_ident | postgres | configuration file
  74. temp_buffers | 1024 | configuration file
  75. TimeZone | UTC | configuration file
  76. timezone_abbreviations | AlmostAll | configuration file
  77. work_mem | 512MB | configuration file
  78. (20 rows)
  79.  
  80. SELECT version();
  81.  
  82. SELECT name, current_setting(name), source
  83. FROM pg_settings
  84. WHERE source NOT IN ('default', 'override');
Add Comment
Please, Sign In to add comment