Skip to content
logo
Percona Product Documentation
Upgrading Percona Distribution for PostgreSQL from 11 to 12
Initializing search
    percona/postgresql-docs
    percona/postgresql-docs
    • Percona Distribution for PostgreSQL 12 Documentation
        • Overview
        • Install on Debian and Ubuntu
        • Install on RHEL and derivatives
        • Enable Percona Distribution for PostgreSQL extensions
        • Repositories overview
      • Migrate from PostgreSQL to Percona Distribution for PostgreSQL
      • Upgrading Percona Distribution for PostgreSQL from 11 to 12
        • On Debian and Ubuntu using apt
        • On Red Hat Enterprise Linux and CentOS using yum
      • Minor Upgrade of Percona Distribution for PostgreSQL
      • pg_stat_monitor
      • High availability
        • Deploying on Debian or Ubuntu
        • Deploying on RHEL or CentOS
        • Testing the Patroni PostgreSQL Cluster
      • Backup and disaster recovery
        • Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL
      • LDAP authentication
    • Uninstall
      • Release notes index
      • Percona Distribution for PostgreSQL 12.13 (2022-12-01)
      • Percona Distribution for PostgreSQL 12.12 (2022-09-07)
      • Percona Distribution for PostgreSQL 12.11 (2022-06-06)
      • Percona Distribution for PostgreSQL 12.10 Second Update (2022-05-05)
      • Percona Distribution for PostgreSQL 12.10 Update (2022-04-14)
      • Percona Distribution for PostgreSQL 12.10 (2022-03-30)
      • Percona Distribution for PostgreSQL 12.9 (2021-12-13)
      • Percona Distribution for PostgreSQL 12.8 Update (2021-12-07)
      • Percona Distribution for PostgreSQL 12.8 (2021-09-09)
      • Percona Distribution for PostgreSQL 12.7 Third Update (2021-07-15)
      • Percona Distribution for PostgreSQL 12.7 Second Update (2021-07-01)
      • Percona Distribution for PostgreSQL 12.7 Update (2021-06-10)
      • Percona Distribution for PostgreSQL 12.7 (2021-05-24)
      • Percona Distribution for PostgreSQL 12.6 Fourth Update (2021-06-10)
      • Percona Distribution for PostgreSQL 12.6 Third Update (2021-05-10)
      • Percona Distribution for PostgreSQL 12.6 Second Update (2021-04-27)
      • Percona Distribution for PostgreSQL 12.6 Update (2021-04-12)
      • Percona Distribution for PostgreSQL 12.6 (2021-03-09)
      • Percona Distribution for PostgreSQL 12.5 (2020-12-07)
      • Percona Distribution for PostgreSQL 12.4 Update (2020-09-22)
      • Percona Distribution for PostgreSQL 12.4 (2020-09-11)
      • Percona Distribution for PostgreSQL 12.3 (2020-06-11)
      • Percona Distribution for PostgreSQL 12.2 (2020-05-15)
    • Licensing
    • On Debian and Ubuntu using apt
    • On Red Hat Enterprise Linux and CentOS using yum

    Upgrading Percona Distribution for PostgreSQL from 11 to 12¶

    This document describes the in-place upgrade of Percona Distribution for PostgreSQL using the pg_upgrade tool. The in-place upgrade means installing a new version without removing the old version and keeping the data files on the server.

    Seealso

    pg_upgrade Documentation:

    https://www.postgresql.org/docs/12/pgupgrade.html

    Similar to installing, we recommend you to upgrade Percona Distribution for PostgreSQL from Percona repositories.

    Important

    A major upgrade is a risky process because of many changes between versions and issues that might occur during or after the upgrade. Therefore, make sure to back up your data first. The backup tools are out of scope of this document. Use the backup tool of your choice.

    The general in-place upgrade flow for Percona Distribution for PostgreSQL is the following:

    1. Install Percona Distribution for PostgreSQL 12 packages.

    2. Stop the PostgreSQL service.

    3. Check the upgrade without modifying the data.

    4. Upgrade Percona Distribution for PostgreSQL.

    5. Start PostgreSQL service.

    6. Execute the analyze_new_cluster.sh script to generate statistics so the system is usable.

    7. Delete old packages and configuration files.

    The exact steps may differ depending on the package manager of your operating system.

    On Debian and Ubuntu using apt¶

    Important

    Run all commands as root or via sudo.

    1. Install Percona Distribution for PostgreSQL 12 packages.

      • Enable Percona repository using the percona-release utility:
      $ sudo percona-release setup ppg-12
      
      • Install Percona Distribution for PostgreSQL 12 package:
      $ sudo apt install percona-postgresql-12
      
      • Install the components:
      $ sudo apt install percona-postgresql-12-repack
      $ sudo apt install percona-postgresql-12-pgaudit
      $ sudo apt install percona-pgbackrest
      $ sudo apt install percona-patroni
      $ sudo apt install percona-pg-stat-monitor12
      $ sudo apt install percona-pgbadger
      $ sudo apt install percona-pgaudit12-set-user
      $ sudo apt install percona-pgbadger
      $ sudo apt install percona-postgresql-12-wal2json
      $ sudo apt install percona-postgresql-contrib
      

      Seealso

      Percona Documentation:

      • Percona Software Repositories Documentation

      • Installing Percona Distribution for PostgreSQL

    2. Stop the postgresql service.

      $ sudo systemctl stop postgresql.service
      

      This stops both Percona Distribution for PostgreSQL 11 and 12.

    3. Run the database upgrade.

      • Log in as the postgres user.
      $ sudo su postgres
      
      • Change the current directory to the tmp directory where logs and some scripts will be recorded:
      cd tmp/
      
      • Check the ability to upgrade Percona Distribution for PostgreSQL from 11 to 12:
      $ /usr/lib/postgresql/12/bin/pg_upgrade
      --old-datadir=/var/lib/postgresql/11/main \
      --new-datadir=/var/lib/postgresql/12/main  \
      --old-bindir=/usr/lib/postgresql/11/bin  \
      --new-bindir=/usr/lib/postgresql/12/bin  \
      --old-options '-c config_file=/etc/postgresql/11/main/postgresql.conf' \
      --new-options '-c config_file=/etc/postgresql/12/main/postgresql.conf' \
      --check
      

      The --check flag here instructs pg_upgrade to only check the upgrade without changing any data.

      • Upgrade the Percona Distribution for PostgreSQL
      $ /usr/lib/postgresql/12/bin/pg_upgrade
      --old-datadir=/var/lib/postgresql/11/main \
      --new-datadir=/var/lib/postgresql/12/main  \
      --old-bindir=/usr/lib/postgresql/11/bin \
      --new-bindir=/usr/lib/postgresql/12/bin \
      --old-options '-c config_file=/etc/postgresql/11/main/postgresql.conf' \
      --new-options '-c config_file=/etc/postgresql/12/main/postgresql.conf' \
      --link
      

      The --link flag creates hard links to the files on the old version cluster so you don’t need to copy data. If you don’t wish to use the --link option, make sure that you have enough disk space to store 2 copies of files for both old version and new version clusters.

      • Go back to the regular user:
      exit
      
      • The Percona Distribution for PostgreSQL 11 uses the 5432 port while the Percona Distribution for PostgreSQL 12 is set up to use the 5433 port by default. To start the Percona Distribution for PostgreSQL 12, swap ports in the configuration files of both versions.
      $ sudo vim /etc/postgresql/12/main/postgresql.conf
      $ port = 5433 # Change to 5432 here
      $ sudo vim /etc/postgresql/11/main/postgresql.conf
      $ port = 5432 # Change to 5433 here
      
    4. Start the postgreqsl service.

      $ sudo systemctl start postgresql.service
      
    5. Check the postgresql version.

      $ #Log in as a postgres user
      $ sudo su postgres
      $ #Check the database version
      $ psql -c "SELECT version();"
      
    6. Run the analyze_new_cluster.sh script

      $ tmp/analyze_new_cluster.sh
      $ #Logout
      $ exit
      
    7. Delete Percona Distribution for PostgreSQL 11 packages and configuration files

      • Remove packages
      $ sudo apt remove percona-postgresql-11* percona-pgbackrest percona-patroni percona-pg-stat-monitor11 percona-pgaudit11-set-user percona-pgbadger percona-pgbouncer percona-postgresql-11-wal2json
      
      • Remove old files
      $ sudo rm -rf /etc/postgresql/11/main
      

    On Red Hat Enterprise Linux and CentOS using yum¶

    Important

    Run all commands as root or via sudo.

    1. Install Percona Distribution for PostgreSQL 12 packages

      • Enable Percona repository using the percona-release utility:
      $ sudo percona-release setup ppg-12
      
      • Install Percona Distribution for PostgreSQL 12:
      $ sudo yum install percona-postgresql12-server
      
      • Install components:
      $ sudo yum install percona-pgaudit
      $ sudo yum install percona-pgbackrest
      $ sudo yum install percona-pg_repack12
      $ sudo yum install percona-patroni
      $ sudo yum install percona-pg-stat-monitor12
      $ sudo yum install percona-pgbadger
      $ sudo yum install percona-pgaudit12_set_user
      $ sudo yum install percona-pgbadger
      $ sudo yum install percona-wal2json12
      $ sudo yum install percona-postgresql12-contrib
      
    2. Set up Percona Distribution for PostgreSQL 12 cluster

      • Log is as the postgres user
      $ sudo su postgres
      $ #Set up locale settings
      $ export LC_ALL="en_US.UTF-8"
      $ export LC_CTYPE="en_US.UTF-8"
      $ #Initialize cluster with the new data directory
      $ /usr/pgsql-12/bin/initdb -D /var/lib/pgsql/12/data
      
    3. Stop the postgresql 11 service

      $ sudo systemctl stop postgresql-11
      
    4. Run the database upgrade.

      • Log in as the postgres user
      $ sudo su postgres
      
      • Check the ability to upgrade Percona Distribution for PostgreSQL from 11 to 12:
      $ /usr/pgsql-12/bin/pg_upgrade \
      --old-bindir /usr/pgsql-11/bin \
      --new-bindir /usr/pgsql-12/bin \
      --old-datadir /var/lib/pgsql/11/data \
      --new-datadir /var/lib/pgsql/12/data \
      --link \
      --check
      

      The --check flag here instructs pg_upgrade to only check the upgrade without changing any data.

      • Upgrade the Percona Distribution for PostgreSQL
      $ /usr/pgsql-12/bin/pg_upgrade \
      --old-bindir /usr/pgsql-11/bin \
      --new-bindir /usr/pgsql-12/bin \
      --old-datadir /var/lib/pgsql/11/data \
      --new-datadir /var/lib/pgsql/12/data \
      --link
      

      The --link flag creates hard links to the files on the old version cluster so you don’t need to copy data. If you don’t wish to use the --link option, make sure that you have enough disk space to store 2 copies of files for both old version and new version clusters.

    5. Start the postgresql 12 service.

      $ #Start postgresql service
      $ sudo systemctl start postgresql-12
      $ #Check postgresql status
      $ sudo systemctl status postgresql-12
      
    6. Run the analyze_new_cluster.sh script

      $ #Log in as the postgres user
      $ sudo su postgres
      $ #Run the script
      $ ./analyze_new_cluster.sh
      
    7. Delete Percona Distribution for PostgreSQL 11 configuration files

      $ ./delete_old_cluster.sh
      
    8. Delete Percona Distribution for PostgreSQL 11 packages

      • Remove packages
      $ sudo yum -y remove percona-postgresql-11*
      
      • Remove old files
      $ sudo rm -rf /var/lib/pgsql/11/data
      

    Contact Us

    For free technical help, visit the Percona Community Forum.

    To report bugs or submit feature requests, open a JIRA ticket.

    For paid support and managed or consulting services , contact Percona Sales.


    Last update: October 25, 2021
    Created: June 4, 2021
    Back to top
    Percona LLC, © 2022
    Made with Material for MkDocs

    Cookie consent

    We use cookies to recognize your repeated visits and preferences, as well as to measure the effectiveness of our documentation and whether users find what they're searching for. With your consent, you're helping us to make our documentation better.