From c7fb87853edfb5958e41e0685d01a31b5b51fd55 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Tue, 21 Jul 2015 17:22:09 -0400 Subject: [PATCH] Fix the IP address in the sample text --- .../large_clusters/databases/postgres_configure.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source/guides/admin-guides/large_clusters/databases/postgres_configure.rst b/source/guides/admin-guides/large_clusters/databases/postgres_configure.rst index ad4f75d77..52db88e00 100644 --- a/source/guides/admin-guides/large_clusters/databases/postgres_configure.rst +++ b/source/guides/admin-guides/large_clusters/databases/postgres_configure.rst @@ -18,13 +18,14 @@ For service nodes, add the IP address of each service nodes to the postgres conf If you had the following two service nodes: :: - sn10 192.168.1.10 - sn11 192.168.1.11 + + sn10, ip: 192.168.1.10 with netmask 255.255.255.0 + sn11, ip: 192.168.1.11 with netmask 255.255.255.0 You would add the following to ``/var/lib/pgsql/data/pg_hba.conf`` :: - host all all 11.16.1.230/32 md5 - host all all 11.16.2.230/32 md5 + host all all 192.168.1.10/24 md5 + host all all 192.168.1.11/24 md5 Restart PostgreSQL after editing the file: ::