Installing Postgres Enterprise Manager server on Ubuntu 20.04 x86_64 v9
You can install PEM on a single server, or you can install the web application server and the backend database on two separate servers. You must prepare your servers for PEM installation.
After fulfilling the prerequisites and completing the installation procedure described in the following steps, you must configure PEM. If you're using two servers, install and configure PEM on both servers.
Prerequisites
Before you begin the installation process:
Install a supported Postgres instance for PEM to use as a backend database.
You can install this instance on the same server to be used for the PEM web application or on a separate server. You can also use an existing Postgres instance if it is configured as detailed in the next steps.
Configure authentication on the Postgres backend database by updating the
pg_hba.conf
file.Make the following changes manually, prior to configuration. (Additional changes are necessary during configuration.)
To create the relations required for PEM, the PEM configuration script connects to the Postgres backend database as a superuser of your choice using password authentication. This requires you to permit your chosen superuser to authenticate using a password. This user must be able to connect from any location where you run the configuration script. In practice, this means the server where the backend database is located and the server where the PEM web application is to be installed, if they're different.
To allow the chosen superuser to connect using password authentication, add a line to
pg_hba.conf
that allowshost
connections usingmd5
orscram-sha-256
authentication, such ashost all superusername 127.0.0.1/32 scram-sha-256
.
Note
If you're using EDB Postgres Advanced Server, see Modifying the pg_hba.conf file.
If you're using PostgreSQL, see Client Authentication.
Verify that the
sslutils
extension is installed on your Postgres server.If you're using PostgreSQL or EDB Postgres Extended Server on RHEL/AlmaLinux/Rocky Linux or SLES, you also need to install the
hstore contrib
module.If you're using EDB Postgres Advanced Server, you can install the
sslutils
extension as follows, where<x>
is the EDB Postgres Advanced server version.If you're using PostgreSQL, you can install the
sslutils
and, if required,hstore
modules as follows, where<x>
is the PostgreSQL version.