From 1f54d43075d8c457935cd9fe8adfea949104995d Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 30 Jul 2005 15:17:26 +0000 Subject: Add GUC variables to control keep-alive times for idle, interval, and count. Oliver Jowett --- src/backend/utils/misc/postgresql.conf.sample | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/backend/utils/misc/postgresql.conf.sample') diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index db8c28814db..5eabe09552e 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -70,6 +70,11 @@ #krb_caseins_users = off #krb_srvname = 'postgres' +# - TCP Keepalives - +# see 'man 7 tcp' for details +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; 0 uses the system default. +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; 0 uses the system default. +#tcp_keepalives_count = 0 # TCP_KEEPCNT, in seconds; 0 uses the system default. #--------------------------------------------------------------------------- # RESOURCE USAGE (except WAL) -- cgit v1.2.3