Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Srinivasan-Nesamani
Contributor
Contributor

Issue Installing PostgreSQL Driver on AlmaLinux 10 Gateway Server

In Qlik Data Integration, I am trying to create a PostgreSQL connection and it will use Data Gateway server. However, I am unable to install the PostgreSQL driver on the gateway server. The gateway server is running on AlmaLinux 10.

 

I am receiving the following error while installing the driver on the gateway server.

linux version = 10.1
get: https://download.postgresql.org/pub/repos/yum/13/redhat/rhel-10-x86_64/postgresql13-libs-13.23-1PGD…
Failed to download driver from 'https://download.postgresql.org/pub/repos/yum/13/redhat/rhel-10-x86_64/postgresql13-libs-13.23-1PGD…
error is: HTTP Error 410: Gone
Download the file 'postgresql13-libs-13.23-1PGDG.rhel10.x86_64.rpm' and copy it to folder '/opt/qlik/gateway/movement/drivers/postgres'. Then retry the installation.

 

Additionally, on the PostgreSQL FTP page https://ftp.postgresql.org/pub/repos/yum/ I am unable to find the files mentioned in the error message. If possible, could you please share the required files with us or suggest an alternative way to obtain and install them?

Labels (1)
1 Reply
Sunilsahu_345
Contributor III
Contributor III

This looks more like a repository compatibility issue with AlmaLinux 10 than a direct Qlik Data Integration problem.

The important detail is the HTTP Error 410: Gone, which usually means the package path referenced by the installer no longer exists on the PostgreSQL mirror. Since AlmaLinux 10 is relatively new, there may also be a lag before some PGDG packages are fully published or supported for that platform/version combination.

A few things worth checking:

  1. Verify whether Qlik officially supports AlmaLinux 10 for the current Data Gateway release. In some cases, newer OS versions work partially but the bundled installer scripts still point to older repository structures.
  2. Try installing the PostgreSQL client libraries manually from the PGDG repo instead of using the automatic download process. For example:

    dnf search postgresql | grep libpq

    or:

    dnf install postgresql-libs
  3. It may also help to compare the expected package version (postgresql13-libs-13.23) against what is currently available under the RHEL 10 repositories. PostgreSQL may have already rotated older minor builds out of the repo metadata.
  4. If the driver installer is hardcoded to a deprecated URL, Qlik Support may need to provide an updated driver bundle or patch for AlmaLinux/RHEL 10 compatibility.

Given the 410 response, I suspect the installer is referencing a package that has been removed from the upstream mirror rather than a permissions or connectivity issue.