Using the PostgreSQL database with GNU Enterprise
=========================================================


Setting up the permissions on the database server
-------------------------------------------------

NOTE: This is the quick and dirty way, granting full, passwordless access to a
given host or subnet.  You most probably don't want this in production
environments.  Please refer to your PostgreSQL documentation for setting up
access permissions properly.

For the quick and dirty "full access" configuration, edit the file
/etc/postgresql/pg_hba.conf and set host, db or user to 'trust'.

To grant 'trusted' (full) access from the local host add a line like:

  host  all  all  127.0.0.1     255.255.255.255  trust

To grant 'trusted' (full) acces from the LAN 192.168.32.*

  host  all  all  192.168.32.0  255.255.255.0    trust
