Thread: Postgres compatibility with RHEL

Postgres compatibility with RHEL

From
Siddhartha Jain
Date:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha 

Re: Postgres compatibility with RHEL

From
Devrim Gündüz
Date:
Hi,

No and maybe:

RHEL 7 is already EOLed and we support up to PostgreSQL.15 on that platform.

For RHEL 9: If you need llvmjit subpackage, then you'll need RHEL 9.5. We build the packages on the up2date instances, so some breakage may / may not occur for older RHEL releases.

Regards, Devrim


On 4 December 2024 14:03:38 CET, Siddhartha Jain <siddharthajain92@gmail.com> wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha 

Re: Postgres compatibility with RHEL

From
Ron Johnson
Date:
On Wed, Dec 4, 2024 at 8:03 AM Siddhartha Jain <siddharthajain92@gmail.com> wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Are you doing an in-place RHEL upgrade on the server?  If so, then I'd:
1) run pg_dump, "pg_dumpall -g", and save postgresql.conf, pg_hba.conf, etc files when the server is still RHEL 7.9 and PG 11.22, 
2) upgrade to RHEL 9.1 (out of scope for this list), 
3) install PG 16.6,
4) what you do next depends on your mount points.

--
Death to <Redacted>, and butter sauce.
Don't boil me, I'm still alive.
<Redacted> lobster!

Re: Postgres compatibility with RHEL

From
vrms
Date:
I believe the best way would be to

  1. setup a new rhel9 server with pg16
  2. get a dump (pg_dumpall) from the old machine onto the new machine
  3. restore that dump
  4. copy pg_hba.conf and postgresql.conf over to the new machine
  4.1. make sure to keep the new postgresql.conf and adjust custom settings you may have on the old machine with making sure those settings have not changed

If you want to do this close to zero downtime, you could set up logical replication to the new pg16 machine and once that is finished switch over and promote that to be the new main.



On 04.12.24 14:03, Siddhartha Jain wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha 

Re: Postgres compatibility with RHEL

From
Devrim Gündüz
Date:
Sorry, but pg_dumpall is almost never the best way - or even good way.


On 7 December 2024 17:43:11 CET, vrms <vrms@netcologne.de> wrote:
I believe the best way would be to

  1. setup a new rhel9 server with pg16
  2. get a dump (pg_dumpall) from the old machine onto the new machine
  3. restore that dump
  4. copy pg_hba.conf and postgresql.conf over to the new machine
  4.1. make sure to keep the new postgresql.conf and adjust custom settings you may have on the old machine with making sure those settings have not changed

If you want to do this close to zero downtime, you could set up logical replication to the new pg16 machine and once that is finished switch over and promote that to be the new main.



On 04.12.24 14:03, Siddhartha Jain wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha 

Re: Postgres compatibility with RHEL

From
"Deepak Pahuja ."
Date:
Hi

Kindly share the best way in this scenario, as pg_dumpall will be easiest I think too.

Thanks Deepak 

From: Devrim Gündüz <devrim@gunduz.org>
Sent: Sunday, December 8, 2024 2:14:06 AM
To: pgsql-admin@lists.postgresql.org <pgsql-admin@lists.postgresql.org>; vrms <vrms@netcologne.de>
Subject: Re: Postgres compatibility with RHEL
 
Sorry, but pg_dumpall is almost never the best way - or even good way.


On 7 December 2024 17:43:11 CET, vrms <vrms@netcologne.de> wrote:
I believe the best way would be to

  1. setup a new rhel9 server with pg16
  2. get a dump (pg_dumpall) from the old machine onto the new machine
  3. restore that dump
  4. copy pg_hba.conf and postgresql.conf over to the new machine
  4.1. make sure to keep the new postgresql.conf and adjust custom settings you may have on the old machine with making sure those settings have not changed

If you want to do this close to zero downtime, you could set up logical replication to the new pg16 machine and once that is finished switch over and promote that to be the new main.



On 04.12.24 14:03, Siddhartha Jain wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha 

Re: Postgres compatibility with RHEL

From
Shawn McKee
Date:
Hi Siddhartha,

We just did something similar.   We had Postrgresql 11 on CentOS 7.9 and needed to get to RHEL 9.4

We set up new hardware as RHEL 9.4 and installed Postgresql 15.10 on it but didn't initialize the DB.  
  • dnf install --enablerepo=pgdg15 postgresql15.x86_64 postgresql15-contrib.x86_64 postgresql15-libs.x86_64 postgresql15-server.x86_64

  • (version 15.10-1PGDG)

You can get the repos set up on CentOS 7 via:
We then upgraded the CentOS 7.9 system using the --link option:

/usr/pgsql-15/bin/pg_upgrade --link  --verbose &> ~/pg_upgrade_15.log

On our DB, this took only about 9 seconds (we run just a couple DBs but one has is tracking 30 million file details) but we have the DB on NVMe devices.

Once you have the master CentOS 7.9 version on Postgresql 15, you can set up the RHEL 9.4 version as a slave standby node using pg_basebackup.   You can google for guides like https://medium.com/@wasiualhasib/postgresql-15-master-slave-configuration-using-streaming-replication-step-by-step-a4ccb2ba7083

Once you are synchronized, you can shutdown the master, shutdown the slave, reconfigure the slave to be the former master (change hostname and IP adddress(es)) and bring it back up.

To get to 16 you can run the pg_upgrade command similarly to how you did the original master on CentOS 7.9.   This process should minimize the amount of time you have to be down.

Shawn

  

On Sat, Dec 7, 2024 at 11:43 AM vrms <vrms@netcologne.de> wrote:
I believe the best way would be to

  1. setup a new rhel9 server with pg16
  2. get a dump (pg_dumpall) from the old machine onto the new machine
  3. restore that dump
  4. copy pg_hba.conf and postgresql.conf over to the new machine
  4.1. make sure to keep the new postgresql.conf and adjust custom settings you may have on the old machine with making sure those settings have not changed

If you want to do this close to zero downtime, you could set up logical replication to the new pg16 machine and once that is finished switch over and promote that to be the new main.



On 04.12.24 14:03, Siddhartha Jain wrote:
Hi,

Please let me know if Postgresql 16 is compatible with RHEL 7.9 version and RHEL 9.1 version.
I need to upgrade postgres from 11.22 to 16.6 and need information for that as the OS version is going to upgrade from 7.9 to 9.1. 
Also, let me know the strategies if any to upgrade both RHEL and DB. 

Thanks,
Siddhartha