diff --git a/docs/README.md b/docs/README.md index 1905f2a..545bec8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -80,17 +80,19 @@ If you don’t have PostgreSQL already: - PostgreSQL 11: `yum install postgresql11-server postgresql11-contrib` - PostgreSQL 12: `yum install postgresql12-server postgresql12-contrib` - PostgreSQL 13: `yum install postgresql13-server postgresql13-contrib` + - PostgreSQL 14: `yum install postgresql14-server postgresql14-contrib` Then install the “2ndQuadrant’s General Public” repository for your PostgreSQL version, by running the following instructions as root on the destination Linux server: - - PostgreSQL 9.4: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/9.4/rpm | bash` - - PostgreSQL 9.5: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/9.5/rpm | bash` - - PostgreSQL 9.6: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/9.6/rpm | bash` - - PostgreSQL 10: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/10/rpm | bash` - - PostgreSQL 11: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/11/rpm | bash` - - PostgreSQL 12: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/12/rpm | bash` - - PostgreSQL 13: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/13/rpm | bash` + - PostgreSQL 9.4: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/9.4/rpm | bash` + - PostgreSQL 9.5: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/9.5/rpm | bash` + - PostgreSQL 9.6: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/9.6/rpm | bash` + - PostgreSQL 10: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/10/rpm | bash` + - PostgreSQL 11: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/11/rpm | bash` + - PostgreSQL 12: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/12/rpm | bash` + - PostgreSQL 13: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/13/rpm | bash` + - PostgreSQL 14: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/14/rpm | bash` ##### Installation @@ -103,6 +105,7 @@ Once the repository is installed, you can proceed to pglogical for your PostgreS - PostgreSQL 11: `yum install postgresql11-pglogical` - PostgreSQL 12: `yum install postgresql12-pglogical` - PostgreSQL 13: `yum install postgresql13-pglogical` + - PostgreSQL 14: `yum install postgresql14-pglogical` You may be prompted to accept the repository GPG key for package signing: @@ -119,7 +122,7 @@ Debian (e.g. Ubuntu). ##### Pre-requisites You can install the “2ndQuadrant’s General Public” repository by running the -following instructions as root on the destination Linux server: `curl https://access.2ndquadrant.com/api/repository/dl/default/release/deb | bash` +following instructions as root on the destination Linux server: `curl https://techsupport.enterprisedb.com/api/repository/dl/default/release/deb | bash` - Add the http://apt.postgresql.org/ repository. See the site for instructions. @@ -134,6 +137,7 @@ Once pre-requisites are complete, installing pglogical is simply a matter of exe - PostgreSQL 11: `sudo apt-get install postgresql-11-pglogical` - PostgreSQL 12: `sudo apt-get install postgresql-12-pglogical` - PostgreSQL 13: `sudo apt-get install postgresql-13-pglogical` + - PostgreSQL 14: `sudo apt-get install postgresql-14-pglogical` ### From source code