diff -r -N -u postgresql-8.1.4_etalon/contrib/Makefile postgresql-8.1.4_common/contrib/Makefile --- postgresql-8.1.4_etalon/contrib/Makefile 2005-09-02 02:02:44.000000000 +0400 +++ postgresql-8.1.4_common/contrib/Makefile 2006-10-02 21:10:21.000000000 +0400 @@ -31,7 +31,10 @@ tips \ tsearch2 \ userlock \ - vacuumlo + vacuumlo \ + mchar \ + fulleq \ + fasttrun # Missing: # adddepend \ (does not have a makefile) diff -u -r postgresql-1c-8.1.4for1c.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-1c-8.1.4for1c/src/backend/utils/misc/postgresql.conf.sample --- postgresql-1c-8.1.4for1c.orig/src/backend/utils/misc/postgresql.conf.sample 2006-07-06 16:50:34.000000000 +0400 +++ postgresql-1c-8.1.4for1c/src/backend/utils/misc/postgresql.conf.sample 2006-07-07 13:27:11.000000000 +0400 @@ -46,7 +46,7 @@ # - Connection Settings - -#listen_addresses = 'localhost' # what IP address(es) to listen on; +listen_addresses = '*' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost', '*' = all #port = 5432 @@ -90,7 +90,7 @@ # - Memory - -#shared_buffers = 1000 # min 16 or max_connections*2, 8KB each +shared_buffers = 3500 # min 16 or max_connections*2, 8KB each #temp_buffers = 1000 # min 100, 8KB each #max_prepared_transactions = 5 # can be 0 or more # note: increasing max_prepared_transactions costs ~600 bytes of shared memory @@ -175,7 +175,7 @@ # - Planner Cost Constants - -#effective_cache_size = 1000 # typically 8KB each +effective_cache_size = 10000 # typically 8KB each #random_page_cost = 4 # units are one sequential page fetch # cost #cpu_tuple_cost = 0.01 # (same) @@ -332,7 +332,7 @@ #stats_start_collector = on #stats_command_string = off #stats_block_level = off -#stats_row_level = off +stats_row_level = on #stats_reset_on_server_start = off @@ -340,7 +340,7 @@ # AUTOVACUUM PARAMETERS #--------------------------------------------------------------------------- -#autovacuum = off # enable autovacuum subprocess? +autovacuum = on # enable autovacuum subprocess? #autovacuum_naptime = 60 # time between autovacuum runs, in secs #autovacuum_vacuum_threshold = 1000 # min # of tuple updates before # vacuum @@ -400,7 +400,7 @@ #--------------------------------------------------------------------------- #deadlock_timeout = 1000 # in milliseconds -#max_locks_per_transaction = 64 # min 10 +max_locks_per_transaction = 150 # min 10 # note: each lock table slot uses ~220 bytes of shared memory, and there are # max_locks_per_transaction * (max_connections + max_prepared_transactions) # lock table slots. diff -u -r postgresql-1c-8.1.4for1c.orig/src/backend/libpq/pg_hba.conf.sample postgresql-1c-8.1.4for1c/src/backend/libpq/pg_hba.conf.sample --- postgresql-1c-8.1.4for1c.orig/src/backend/libpq/pg_hba.conf.sample 2006-07-06 16:50:43.000000000 +0400 +++ postgresql-1c-8.1.4for1c/src/backend/libpq/pg_hba.conf.sample 2006-07-07 18:51:59.000000000 +0400 @@ -69,8 +69,7 @@ # TYPE DATABASE USER CIDR-ADDRESS METHOD -@remove-line-for-nolocal@# "local" is for Unix domain socket connections only -@remove-line-for-nolocal@local all all @authmethod@ # IPv4 local connections: -host all all 127.0.0.1/32 @authmethod@ +#host all all 127.0.0.1/32 @authmethod@ # IPv6 local connections: -host all all ::1/128 @authmethod@ +#host all all ::1/128 @authmethod@ +host all all 0.0.0.0/0 md5