2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-03 20:10:09 +00:00

Fix the IP address in the sample text

This commit is contained in:
Victor Hu 2015-07-21 17:22:09 -04:00
parent 733f8b77f6
commit c7fb87853e

View File

@ -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: ::