The directory context for PostgreSQL scripts is install-dir\DirXMLUtilities\jdbc\sql\postgres\install. The directory context for executing Postgres commands is postgres-install-dir/pgsql/bin.
Create the idm database.
For example, from the UNIX command line, execute the following command:
./createdb idm
From a Postgres client such as psql, log in as user postgres to the idm database.
For example, from the UNIX command line, execute the following command:
./psql -d idm postgres
By default, the Postgres user has no password.
From inside psql, execute the script 1_install_8.sql. For example:
idm=# \i 1_install_8.sql
Update the pg_hba.conf file.
As of version 8, this can be done through pgAdminIII. After you start, go to pg_hba.conf. In the pgAdminIII pg_hba.conf editor, the IP-ADDRESS and IP-MASK columns in the file are combined into a single field: IP-Address. Place both the IP-ADDRESS and IP-MASK values in that field, separated by a single whitespace character.
> to connect to the server, select the IDM database, then go to > >For example, add entries for the idm database user. Adjust the IP-ADDRESS and IP-MASK as necessary:
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD# allow driver user idm to connect to database idm host idm idm 255.255.255.255 255.255.255.0 password
Restart the Postgres server to effect changes made to the pg_hba.conf file.
(Conditional) If you are using pgAdminIII, in the pg_hba.conf editor select the disk icon (save file) in the toolbar. When prompted, press
.