]> granicus.if.org Git - pgbouncer/commitdiff
Change default port number from 6000 to 6432.
authorMarko Kreen <markokr@gmail.com>
Wed, 19 Nov 2008 11:51:23 +0000 (11:51 +0000)
committerMarko Kreen <markokr@gmail.com>
Wed, 19 Nov 2008 11:51:23 +0000 (11:51 +0000)
6000 is conflicts with X, 6432 seems free and is already used by Debian.

doc/config.txt
etc/pgbouncer.ini
etc/small.ini
etc/test.ini
src/main.c

index fc571e6a0e23160be2482f476f3b6efe0d911f07..d5adbd5adc9a8b67b644b5b07e3205efcb2d14b2 100644 (file)
@@ -48,7 +48,7 @@ Default: not set
 
 On which port to listen on. Applies to both TCP and Unix sockets.
 
-Default: 6000
+Default: 6432
 
 ==== unix_socket_dir ====
 
index 95d6a8a32afcf50b885e861df3b4e1024750197b..7c38f3429089ed4039c72d9083fafb6067605c03 100644 (file)
@@ -26,7 +26,7 @@ pidfile = pgbouncer.pid
 
 ; ip address or * which means all ip-s
 listen_addr = 127.0.0.1
-listen_port = 6000
+listen_port = 6432
 unix_socket_dir = /tmp
 
 ;;;
index 7692e9c0ad48ce9a290ee5e38e403d0b7afa0951..72f86f7f04797b1c5a2fa8f19392a1052d30990f 100644 (file)
@@ -14,7 +14,7 @@ logfile = pgbouncer.log
 ;pidfile = pgbouncer.pid
 
 listen_addr = 127.0.0.1
-listen_port = 6000
+listen_port = 6432
 unix_socket_dir = /tmp
 
 ; any, trust, plain, crypt, md5
index a246ebc9dffa4830239a7bf4cc33caed92dd9a24..d568692245f5ddaa24c10b739b43b15347c4bb81 100644 (file)
@@ -6,7 +6,7 @@ logfile = lib/pgbouncer.log
 pidfile = lib/pgbouncer.pid
 
 listen_addr = 127.0.0.1
-listen_port = 6000
+listen_port = 6432
 unix_socket_dir = /tmp
 
 ; any, trust, plain, crypt, md5
index 4ac1ff398f7d8771dbb57ae9674dd00b7eaf7a6b..98c6cd9f57c7ee53dacbaa526806be2138c9e7c9 100644 (file)
@@ -65,7 +65,7 @@ char *cf_syslog_facility = "daemon";
 static char *cf_config_file;
 
 char *cf_listen_addr = NULL;
-int cf_listen_port = 6000;
+int cf_listen_port = 6432;
 char *cf_unix_socket_dir = "/tmp";
 
 int cf_pool_mode = POOL_SESSION;