6cb03e
Add note warning users that Postgres' port number is forced in the service
6cb03e
file, mainly because it's traditional in Red Hat installations to set it
6cb03e
there rather than in postgresql.conf.  (There are minor usability benefits
6cb03e
to doing it this way though, for example that the postmaster's port number
6cb03e
is visible in "ps" as part of its command line.)
6cb03e
6cb03e
6cb03e
diff -Naur postgresql-9.2rc1.orig/src/backend/utils/misc/postgresql.conf.sample postgresql-9.2rc1/src/backend/utils/misc/postgresql.conf.sample
6cb03e
--- postgresql-9.2rc1.orig/src/backend/utils/misc/postgresql.conf.sample	2012-08-23 18:06:49.000000000 -0400
6cb03e
+++ postgresql-9.2rc1/src/backend/utils/misc/postgresql.conf.sample	2012-09-01 21:57:55.498629897 -0400
6cb03e
@@ -61,6 +61,8 @@
6cb03e
 					# defaults to 'localhost'; use '*' for all
6cb03e
 					# (change requires restart)
6cb03e
 #port = 5432				# (change requires restart)
6cb03e
+# Note: In RHEL/Fedora installations, you can't set the port number here;
6cb03e
+# adjust it in the service file instead.
6cb03e
 #max_connections = 100			# (change requires restart)
6cb03e
 # Note:  Increasing max_connections costs ~400 bytes of shared memory per
6cb03e
 # connection slot, plus lock space (see max_locks_per_transaction).