Database Configuration - PostgreSQL

PostgreSQL is an open source database that can be downloaded from the Internet. For more information, see the PostgreSQL web site at:

http://www.postgresql.com

It’s assumed that PostgreSQL is already installed .

One notation used is <FMEServerDir>, which is the installation directory of FME Server. In Windows, this is typically C:\Program Files\FMEServer.

It’s also assumed that you have JRE 5 or higher and PostgreSQL database installed before you proceed further. If you want to use the JDBC driver, there are several steps to perform.

If you are upgrading, you should back up any job history you want to keep.

After Database Creation

On the machine on which the FME Server database server is installed, open <PostgreSQLDir>\data\pg_hba.conf.

  • Change the following lines:
  • host    all     all     127.0.0.1/32      md5

    host    all     all     ::1/128         md5

    to:

    host    all      all       0.0.0.0/0         md5

    host   all      all     ::/0             md5

  • Restart the FME Server Database service.