2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-08-13 23:00:22 +00:00

Adding more content into configure postgres instructions

This commit is contained in:
Victor Hu
2015-07-21 17:15:42 -04:00
parent 7f7bbf39f4
commit b80d9104fe

View File

@@ -1,5 +1,8 @@
Configure PostgreSQL
====================
Migrate xCAT to use PostgreSQL
==============================
------------------------------
A utility is provided to migrate an existing xCAT database from SQLite to PostgreSQL. ::
@@ -7,3 +10,26 @@ A utility is provided to migrate an existing xCAT database from SQLite to Postgr
**While not recommended**, if you wish to manually migrate your xCAT database, see the following documentation:
`Manually set up PostgreSQL <https://sourceforge.net/p/xcat/wiki/Setting_Up_PostgreSQL_as_the_xCAT_DB/#manually-setup-postgresql>`_
Setting up the Service Nodes
----------------------------
For service nodes, add the IP address of each service nodes to the postgres configuration file: ``/var/lib/pgsql/data/pg_hba.conf``
If you had the following two service nodes: ::
sn10 192.168.1.10
sn11 192.168.1.11
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
Restart PostgreSQL after editing the file: ::
service postgresql restart
For more information about changing the ``pg_hab.conf`` file and ``postgresql.conf`` files, see the following documentation:
`Setup the PostgreSQL Configuraion Files <https://sourceforge.net/p/xcat/wiki/Setting_Up_PostgreSQL_as_the_xCAT_DB/#setup-the-postgresql-configuration-files>`_