Configuring the PEM server to use Kerberos authentication v9
You can configure Kerberos authentication for the PEM server. The Kerberos server works with hostnames and not with IP addresses. To use single sign-on in PEM server using Kerberos authentication, configure the following machines with hostnames using the DNS (realm).
For example, if the realm on Kerberos server is edbpem.org
, then you can set the Kerberos server hostname to Krb5server.edbpem.org
, the PEM server hostname to pem.edbpem.org
, and the client's hostname to pg12.edbpem.org
.The convention is to use the DNS domain name as the name of the realm.
1. Install Kerberos, the PEM server, and the PEM backend database
Install Kerberos on the machine that functions as the authentication server. Install the PEM server on a separate machine. For more information, see Installing the PEM Server.
Install the PEM backend database (Postgres/EDB Postgres Advanced Server) on the same machine as the PEM server or on a different one. For more information, see the Installation steps on EDB Docs website.
2. Add principals on Kerberos server
Add the principals for the PEM web application deployed under an Apache web server (HTTPD/Apache2) and the PEM Backend Database Server (PostgreSQL/EDB Postgres Advanced Server).
HOSTNAME_OF_PEM_SERVER
must contain the realm of the Kerberos server. For example, you can specify pemdb.edbpem.org
as the hostname of PEM server, with edbpem.org
as the realm.
Note
If the PEM web application and the PEM backend database server are on different machines, then hostname is different for each one.
3. Extract key tables from Kerberos server
Extract the key tables from Kerberos for the PEM web application and the PEM backend database server:
Copy the key tables from the Kerberos server to the PEM server:
On the PEM server, move the key tables to the required location and change ownership:
Where:
NAME_OF_PEM_WEB_FILE
is the name specified for the key table for the PEM web application.NAME_OF_PEM_DB_FILE
is the name specified for the key table for the PEM backend database server.OS_USERNAME_ON_PEM_SERVER
is the name of the operating system user on the PEM server.DATA_DIRECTORY_OF_POSTGRES
is the path of the data directory of the installed Postgres database (PostgreSQL/EDB Postgres Advanced Server).
4. Configure the PEM backend database server
Add the key table location in the postgresql.conf
file:
Where:
NAME_OF_PEM_DB_FILE
is the name specified for the key table for the PEM backend database server.DATA_DIRECTORY_OF_POSTGRES
is the path of the data directory of the installed Postgres database (PostgreSQL/EDB Postgres Advanced Server).
Edit the krb5.conf
file:
Restart the database server to reflect the changes:
POSTGRES_SERVICE_NAME
is the service name of the Postgres (PostgreSQL/EDB Postgres Advanced Server) database, for example, postgresql-13
for PostgreSQL 13 database on CentOS or RHEL
or Rocky Linux platforms.
5. Obtain and view the initial ticket
The kinit utility obtains and caches Kerberos tickets. You typically use this utility to obtain the ticket-granting ticket, entering a password to decrypt the credential from the key distribution center (KDC). The ticket-granting ticket is then stored in your credential cache.
You can view the details of the ticket using the klist utility.
Note
Install the Kerberos client on the PEM server and the client machine before using kinit and klist.
It displays the principal along with the Kerberos ticket.
Note
The USERNAME@REALM
specified here must be a database user having the pem_admin role and CONNECT privilege on pem
database.
6. Configure the PEM server
Run the PEM configure script on the PEM server to use Kerberos authentication:
Configure PEM_DB_HOST
in the config_setup.py
file. Check that the value of PEM_AUTH_METHOD
is set to 'kerberos'
.
Configure the host in the .install-config
file:
If the PEM server uses Kerberos authentication:
All the monitored servers default to use the same authentication. To override the default, in the
config_local.py
file, add the parameterALLOW_DATABASE_CONNECTION_WITHOUT_KERBEROS
and set it toTrue
.All the authenticated user principals are appended with the realm (USERNAME@REALM) and passed as the database user name by default. To override the default, in the
config_local.py
file, add the parameterPEM_USER_KRB_INCLUDE_REALM
and set it toFalse
.Restart the Apache server
Edit the entries at the top of
pg_hba.conf
to use the gss authentication method, and reload the database server.POSTGRES_SERVICE_NAME
is the service name of the Postgres (PostgreSQL/EDB Postgres Advanced Server) database, for example,postgresql-13
for PostgreSQL 13 database on CentOS orRHEL
or Rocky Linux platforms.
Note
If you're using PostgreSQL or EDB Postgres Advanced Server 12 or later, then you can specify connection type as hostgssenc
to allow only gss-encrypted connection.
7. Browser settings
Configure the browser on the client machine to access the PEM web client to use the Spnego/Kerberos.
For Mozilla Firefox:
- Open the low-level Firefox configuration page by loading the
about:config
page. - In the search box, enter
network.negotiate-auth.trusted-uris
. - Double-click the
network.negotiate-auth.trusted-uris
preference and enter the hostname or the domain of the web server that's protected by Kerberos HTTP SPNEGO. Separate multiple domains and hostnames with a comma. - In the search box, enter
network.negotiate-auth.delegation-uris
. - Double-click the
network.negotiate-auth.delegation-uris
preference and enter the hostname or the domain of the web server that's protected by Kerberos HTTP SPNEGO. Separate multiple domains and hostnames with a comma. - Select OK.
For Google Chrome on Linux or MacOS:
Add the
--auth-server-whitelist
parameter to thegoogle-chrome
command. For example, to run Chrome from a Linux prompt, run thegoogle-chrome
command as follows:After configuring the PEM server, you can access the PEM web interface in your browser. Navigate to:
Note
You might see the following error while connecting to your Postgres cluster:
psql -h hostname template1
psql: GSSAPI continuation error: Unspecified GSS failure. Minor code may provide more information
GSSAPI continuation error: Key version is not available
Add encryption types to the keytab using ktutil or by recreating the Postgres keytab with all crypto systems from AD.