From 65c4e6703fc03a1ca99498c6013e567b1e36385a Mon Sep 17 00:00:00 2001
From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com>
Date: Mon, 9 Dec 2024 12:25:37 +0530
Subject: [PATCH 1/6] EPAS 17 - decoupled packages from meta
Addresses [DB-2830](https://enterprisedb.atlassian.net/browse/DB-2830)
---
.../epas/17/installing/linux_install_details/rpm_packages.mdx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/product_docs/docs/epas/17/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/17/installing/linux_install_details/rpm_packages.mdx
index f33311ccb5e..0eec46712f5 100644
--- a/product_docs/docs/epas/17/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/17/installing/linux_install_details/rpm_packages.mdx
@@ -33,7 +33,7 @@ Where `package` is the search term that specifies the name or partial name of a
| edb-as17-server-client | Yes | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as17-server-contrib | Yes | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as17/share/doc`
Loadable modules: `/usr/edb/as17/lib`
Binaries: `/usr/edb/as17/bin` |
| edb-as17-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as17-server-devel | Yes | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
+| edb-as17-server-devel | No | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as17-server-docs | Yes | Installs the readme file. |
| edb-as17-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as17-server-libs | Yes | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
@@ -115,7 +115,7 @@ apt list edb*
| edb-as17-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
| edb-as17-server-client | Yes | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as17-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as17-server-dev | Yes | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
+| edb-as17-server-dev | No | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as17-server-doc | Yes | Installs the readme file. |
| edb-as17-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as17-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
From 9f8c61d63bb0af29b2406ca64f89d12ae0530284 Mon Sep 17 00:00:00 2001
From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com>
Date: Mon, 9 Dec 2024 14:02:25 +0530
Subject: [PATCH 2/6] Added content for other earlier versions
---
product_docs/docs/epas/13/ecpgplus_guide/02_overview.mdx | 2 +-
product_docs/docs/epas/14/ecpgplus_guide/02_overview.mdx | 2 +-
.../ecpgplus_guide/installing_ecpgplus.mdx | 2 +-
.../ecpgplus_guide/installing_ecpgplus.mdx | 2 +-
.../epas/16/installing/linux_install_details/rpm_packages.mdx | 4 ++--
.../ecpgplus_guide/installing_ecpgplus.mdx | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/product_docs/docs/epas/13/ecpgplus_guide/02_overview.mdx b/product_docs/docs/epas/13/ecpgplus_guide/02_overview.mdx
index 8ea7443aa5a..24cea73a3f8 100644
--- a/product_docs/docs/epas/13/ecpgplus_guide/02_overview.mdx
+++ b/product_docs/docs/epas/13/ecpgplus_guide/02_overview.mdx
@@ -117,7 +117,7 @@ printf(“Employee salaries updated\n”);
## Installation and Configuration
-On Windows, ECPGPlus is installed by the Advanced Server installation wizard as part of the `Database Server` component. On Linux, install with the `edb-asxx-server-devel` RPM package where `xx` is the Advanced Server version number. By default, the executable is located in:
+On Windows, ECPGPlus is installed by the Advanced Server installation wizard as part of the `Database Server` component. On Linux, install with the `edb-asxx-server-devel` RPM package or `edb-as-server-dev` APT package, where `xx` is the Advanced Server version number. By default, the executable is located in:
On Windows:
diff --git a/product_docs/docs/epas/14/ecpgplus_guide/02_overview.mdx b/product_docs/docs/epas/14/ecpgplus_guide/02_overview.mdx
index 483088149ae..58f7ce9f039 100644
--- a/product_docs/docs/epas/14/ecpgplus_guide/02_overview.mdx
+++ b/product_docs/docs/epas/14/ecpgplus_guide/02_overview.mdx
@@ -122,7 +122,7 @@ printf(“Employee salaries updated\n”);
## Installation and configuration
-On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installation wizard as part of the Database Server component. On Linux, install with the `edb-asxx-server-devel` RPM package, where `xx` is the EDB Postgres Advanced Server version number. By default, the executable is located on Windows in:
+On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installation wizard as part of the Database Server component. On Linux, install with the `edb-asxx-server-devel` RPM package or `edb-as-server-dev` APT package, where `xx` is the EDB Postgres Advanced Server version number. By default, the executable is located on Windows in:
```text
C:\Program Files\edb\as14\bin
diff --git a/product_docs/docs/epas/15/application_programming/ecpgplus_guide/installing_ecpgplus.mdx b/product_docs/docs/epas/15/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
index 29605d0a77d..6463be5bf9c 100644
--- a/product_docs/docs/epas/15/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
+++ b/product_docs/docs/epas/15/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
@@ -7,7 +7,7 @@ On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installati
## Installing ECPGPlus
-On Linux, install with the `edb-as-server-devel` RPM package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
+On Linux, install with the `edb-as-server-devel` RPM package or `edb-as-server-dev` APT package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
```text
/usr/edb/as14/bin
diff --git a/product_docs/docs/epas/16/application_programming/ecpgplus_guide/installing_ecpgplus.mdx b/product_docs/docs/epas/16/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
index 29605d0a77d..6463be5bf9c 100644
--- a/product_docs/docs/epas/16/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
+++ b/product_docs/docs/epas/16/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
@@ -7,7 +7,7 @@ On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installati
## Installing ECPGPlus
-On Linux, install with the `edb-as-server-devel` RPM package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
+On Linux, install with the `edb-as-server-devel` RPM package or `edb-as-server-dev` APT package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
```text
/usr/edb/as14/bin
diff --git a/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
index 213dc7d35e4..4e8637f8978 100644
--- a/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
@@ -33,7 +33,7 @@ Where `package` is the search term that specifies the name or partial name of a
| edb-as16-server-client | Yes | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as16-server-contrib | Yes | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as16/share/doc`
Loadable modules: `/usr/edb/as16/lib`
Binaries: `/usr/edb/as16/bin` |
| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as16-server-devel | Yes | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
+| edb-as16-server-devel | No | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as16-server-docs | Yes | Installs the readme file. |
| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as16-server-libs | Yes | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
@@ -117,7 +117,7 @@ apt list edb*
| edb-as16-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
| edb-as16-server-client | Yes | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as16-server-dev | Yes | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
+| edb-as16-server-dev | No | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
| edb-as16-server-doc | Yes | Installs the readme file. |
| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as16-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
diff --git a/product_docs/docs/epas/17/application_programming/ecpgplus_guide/installing_ecpgplus.mdx b/product_docs/docs/epas/17/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
index 29605d0a77d..6463be5bf9c 100644
--- a/product_docs/docs/epas/17/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
+++ b/product_docs/docs/epas/17/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
@@ -7,7 +7,7 @@ On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installati
## Installing ECPGPlus
-On Linux, install with the `edb-as-server-devel` RPM package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
+On Linux, install with the `edb-as-server-devel` RPM package or `edb-as-server-dev` APT package, where `` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
```text
/usr/edb/as14/bin
From c0e7549d9efc1d6dd763ad25afc8a75b705f64bf Mon Sep 17 00:00:00 2001
From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com>
Date: Mon, 9 Dec 2024 14:34:58 +0530
Subject: [PATCH 3/6] Updated content to address
[DB-2829](https://enterprisedb.atlassian.net/browse/DB-2829)
---
.../linux_install_details/rpm_packages.mdx | 2 +-
.../linux_install_details/rpm_packages.mdx | 132 +++++++--------
.../linux_install_details/rpm_packages.mdx | 130 +++++++-------
.../linux_install_details/rpm_packages.mdx | 158 +++++++++---------
.../linux_install_details/rpm_packages.mdx | 144 ++++++++--------
5 files changed, 283 insertions(+), 283 deletions(-)
diff --git a/product_docs/docs/epas/12/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/12/installing/linux_install_details/rpm_packages.mdx
index dd6fa9a15bf..da78190ce36 100644
--- a/product_docs/docs/epas/12/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/12/installing/linux_install_details/rpm_packages.mdx
@@ -37,7 +37,7 @@ Note: The available package list is subject to change.
| edb-as12-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server |
| edb-as12-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
| edb-as12-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
-| edb-as12-server-llvmjit | This package contains support for Just in Time (JIT) compiling parts of EDBAS queries. |
+| edb-as12-server-llvmjit | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
| edb-as12-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
| edb-as12-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as12-server-plperl` package is dependent on the platform-supplied version of Perl. |
| edb-as12-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available from EDB Postgres Advanced Server version 12 onwards. |
diff --git a/product_docs/docs/epas/13/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/13/installing/linux_install_details/rpm_packages.mdx
index e5358a45984..12889feb165 100644
--- a/product_docs/docs/epas/13/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/13/installing/linux_install_details/rpm_packages.mdx
@@ -25,80 +25,80 @@ Where `package` is the search term that specifies the name (or partial name) of
Note: The available package list is subject to change.
-| Package name | Package installs |
-| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as13-server | This package installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as13-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as13-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as13/share/doc`
Loadable modules: `/usr/edb/as13/lib`
Binaries: `/usr/edb/as13/bin` |
-| edb-as13-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as13-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as13-server-docs | Installs the readme file. |
-| edb-as13-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server |
-| edb-as13-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
-| edb-as13-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
-| edb-as13-server-llvmjit | This package contains support for Just in Time (JIT) compiling parts of EDBAS queries. |
-| edb-as13-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as13-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as13-server-plperl` package is dependent on the platform-supplied version of Perl. |
-| edb-as13-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available from EDB Postgres Advanced Server version 13 onwards. |
-| edb-as13-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as13-pltcl` package is dependent on the platform-supplied version of TCL. |
-| edb-as13-server-sqlprofiler | This package installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as13-server-sqlprotect | This package installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as13-server-sslutils | This package installs functionality that provides SSL support. |
-| edb-as13-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
-| edb-as13-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
-| edb-as13-pgagent | Installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Troubleshooting an installation](../../troubleshooting/). |
-| edb-as13-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as13-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
-| edb-as13-pgpool41-extensions | This package creates pgPool extensions required by the server for use with pgpool. |
-| edb-as13-postgis3 | Installs POSTGIS meta RPMs. |
-| edb-as13-postgis3-core | This package provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
-| edb-as13-postgis3-docs | This package installs pdf documentation of PostGIS. |
-| edb-as13-postgis-jdbc | This package installs the essential jdbc driver for PostGIS. |
-| edb-as13-postgis3-utils | This package installs the utilities for PostGIS. |
-| edb-as13-postgis3-gui | This package provides a GUI for PostGIS. |
-| edb-as13-slony-replication | Installs the meta RPM for Slony-I. |
-| edb-as13-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
-| edb-as13-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
-| edb-as13-slony-replication-tools | This package contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Troubleshooting an installation](../../troubleshooting/). |
-| edb-as13-libicu | These packages contain supporting library files. |
+| Package name | Package installs |
+|----------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as13-server | This package installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as13-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as13-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as13/share/doc`
Loadable modules: `/usr/edb/as13/lib`
Binaries: `/usr/edb/as13/bin` |
+| edb-as13-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as13-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as13-server-docs | Installs the readme file. |
+| edb-as13-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server |
+| edb-as13-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
+| edb-as13-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
+| edb-as13-server-llvmjit | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
+| edb-as13-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as13-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as13-server-plperl` package is dependent on the platform-supplied version of Perl. |
+| edb-as13-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available from EDB Postgres Advanced Server version 13 onwards. |
+| edb-as13-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as13-pltcl` package is dependent on the platform-supplied version of TCL. |
+| edb-as13-server-sqlprofiler | This package installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as13-server-sqlprotect | This package installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as13-server-sslutils | This package installs functionality that provides SSL support. |
+| edb-as13-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
+| edb-as13-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
+| edb-as13-pgagent | Installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Troubleshooting an installation](../../troubleshooting/). |
+| edb-as13-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as13-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
+| edb-as13-pgpool41-extensions | This package creates pgPool extensions required by the server for use with pgpool. |
+| edb-as13-postgis3 | Installs POSTGIS meta RPMs. |
+| edb-as13-postgis3-core | This package provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
+| edb-as13-postgis3-docs | This package installs pdf documentation of PostGIS. |
+| edb-as13-postgis-jdbc | This package installs the essential jdbc driver for PostGIS. |
+| edb-as13-postgis3-utils | This package installs the utilities for PostGIS. |
+| edb-as13-postgis3-gui | This package provides a GUI for PostGIS. |
+| edb-as13-slony-replication | Installs the meta RPM for Slony-I. |
+| edb-as13-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
+| edb-as13-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
+| edb-as13-slony-replication-tools | This package contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Troubleshooting an installation](../../troubleshooting/). |
+| edb-as13-libicu | These packages contain supporting library files. |
The following table lists the packages for EDB Postgres Advanced Server 13 supporting components.
-| Package name | Package installs |
-| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Package name | Package installs |
+|-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| edb-pgpool41 | This package contains the pgPool-II installer. The pgpool-II utility package acts as a middleman between client applications and Server database servers. pgpool-II functionality is transparent to client applications; client applications connect to pgpool-II instead of directly to EDB Postgres Advanced Server, and pgpool-II manages the connection. EDB supports the following pgpool-II features:
- Load balancing
- Connection pooling
- High availability
- Connection limits
pgpool-II runs as a service on Linux systems, and is not supported on Windows systems.
|
| edb-jdbc | The `edb-jdbc` package includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
| edb-migrationtoolkit | The `edb-migrationtoolkit` package installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase and SQL Server. |
| edb-oci | The `edb-oci` package installs the EDB Open Client library, allowing applications that use the Oracle Call Interface API to connect to an EDB Postgres Advanced Server database. |
-| edb-oci-devel | This package installs the OCI include files; install this package if you are developing C/C++ applications that require these files. |
+| edb-oci-devel | This package installs the OCI include files; install this package if you are developing C/C++ applications that require these files. |
| edb-odbc | This package installs the driver needed for applications to access an EDB Postgres Advanced Server system via ODBC. |
-| edb-odbc-devel | This package installs the ODBC include files; install this package if you are developing C/C++ applications that require these files. |
-| edb-pgbouncer113 | This package contains PgBouncer (a lightweight connection pooler). This package requires the libevent package. |
-| ppas-xdb | This package contains the xDB installer; xDB provides asynchronous cross-database replication. |
-| ppas-xdb-console | This package provides support for xDB. |
-| ppas-xdb-libs | This package provides support for xDB. |
-| ppas-xdb-publisher | This package provides support for xDB. |
-| ppas-xdb-subscriber | This package provides support for xDB. |
-| edb-pem | The `edb-pem` package installs Management Tool that efficiently manages, monitor, and tune large Postgres deployments from a single remote GUI console. |
-| edb-pem-agent | This package is an agent component of Postgres Enterprise Manager. |
-| edb-pem-docs | This package contains documentation for various languages, which are in HTML format. |
-| edb-pem-server | This package contains server components of Postgres Enterprise Manager. |
-| edb-pgadmin4 | This package is a management tool for PostgreSQL capable of hosting the Python application and presenting it to the user as a desktop application. |
-| edb-pgadmin4-desktop-common | This package installs the desktop components of pgAdmin4 for all window managers. |
-| edb-pgadmin4-desktop-gnome | This package installs the gnome desktop components of pgAdmin4 |
-| edb-pgadmin4-docs | This package contains documentation of pgAdmin4. |
-| edb-pgadmin4-web | This package contains the required files to run pgAdmin4 as a web application. |
-| edb-efm40 | This package installs EDB Failover Manager that adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
-| edb-rs | This package is a java-based replication framework that provides asynchronous replication across Postgres and EPAS database servers. It supports primary-standby, primary-primary, and hybrid configurations. |
-| edb-rs-client | This package is a java-based command-line tool that is used to configure and operate a replication network via different commands by interacting with the EPRS server. |
-| edb-rs-datavalidator | This package is a java-based command-line tool that provides row and column level data comparison of a source and target database table. The supported RDBMS servers include PostgreSQL, EPAS, Oracle, and MS SQL Server. |
-| edb-rs-libs | This package contains certain libraries that are commonly used by ERPS Server, EPRS Client, and Monitoring modules. |
-| edb-rs-monitor | This package is a java-based application that provides monitoring capabilities to ensure a smooth functioning of the EPRS replication cluster. |
-| edb-rs-server | This package is a java-based replication framework that provides asynchronous replication across Postgres and EPAS database servers. It supports primary-standby, primary-primary, and hybrid configurations. |
+| edb-odbc-devel | This package installs the ODBC include files; install this package if you are developing C/C++ applications that require these files. |
+| edb-pgbouncer113 | This package contains PgBouncer (a lightweight connection pooler). This package requires the libevent package. |
+| ppas-xdb | This package contains the xDB installer; xDB provides asynchronous cross-database replication. |
+| ppas-xdb-console | This package provides support for xDB. |
+| ppas-xdb-libs | This package provides support for xDB. |
+| ppas-xdb-publisher | This package provides support for xDB. |
+| ppas-xdb-subscriber | This package provides support for xDB. |
+| edb-pem | The `edb-pem` package installs Management Tool that efficiently manages, monitor, and tune large Postgres deployments from a single remote GUI console. |
+| edb-pem-agent | This package is an agent component of Postgres Enterprise Manager. |
+| edb-pem-docs | This package contains documentation for various languages, which are in HTML format. |
+| edb-pem-server | This package contains server components of Postgres Enterprise Manager. |
+| edb-pgadmin4 | This package is a management tool for PostgreSQL capable of hosting the Python application and presenting it to the user as a desktop application. |
+| edb-pgadmin4-desktop-common | This package installs the desktop components of pgAdmin4 for all window managers. |
+| edb-pgadmin4-desktop-gnome | This package installs the gnome desktop components of pgAdmin4 |
+| edb-pgadmin4-docs | This package contains documentation of pgAdmin4. |
+| edb-pgadmin4-web | This package contains the required files to run pgAdmin4 as a web application. |
+| edb-efm40 | This package installs EDB Failover Manager that adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
+| edb-rs | This package is a java-based replication framework that provides asynchronous replication across Postgres and EPAS database servers. It supports primary-standby, primary-primary, and hybrid configurations. |
+| edb-rs-client | This package is a java-based command-line tool that is used to configure and operate a replication network via different commands by interacting with the EPRS server. |
+| edb-rs-datavalidator | This package is a java-based command-line tool that provides row and column level data comparison of a source and target database table. The supported RDBMS servers include PostgreSQL, EPAS, Oracle, and MS SQL Server. |
+| edb-rs-libs | This package contains certain libraries that are commonly used by ERPS Server, EPRS Client, and Monitoring modules. |
+| edb-rs-monitor | This package is a java-based application that provides monitoring capabilities to ensure a smooth functioning of the EPRS replication cluster. |
+| edb-rs-server | This package is a java-based replication framework that provides asynchronous replication across Postgres and EPAS database servers. It supports primary-standby, primary-primary, and hybrid configurations. |
| edb-bart | This package installs the Backup and Recovery Tool (BART) to support online backup and recovery across local and remote PostgreSQL and EDB EDB Postgres Advanced Servers. |
-| libevent-edb | This package contains supporting library files. |
-| libiconv-edb | This package contains supporting library files. |
-| libevent-edb-devel | This package contains supporting library files. |
+| libevent-edb | This package contains supporting library files. |
+| libiconv-edb | This package contains supporting library files. |
+| libevent-edb-devel | This package contains supporting library files. |
## Debian/Ubuntu Packages
@@ -118,7 +118,7 @@ apt list edb*
| edb-as13-server | Installs core components of the EDB Postgres Advanced Server database server. |
| edb-as13-server-client | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as13-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as13-server-dev | The `edb-as13-server-dev` package contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
+| edb-as13-server-dev | The `edb-as13-server-dev` package contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
| edb-as13-server-doc | Installs the readme file. |
| edb-as13-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as13-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
diff --git a/product_docs/docs/epas/14/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/14/installing/linux_install_details/rpm_packages.mdx
index bc227da1bd8..82637f3701c 100644
--- a/product_docs/docs/epas/14/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/14/installing/linux_install_details/rpm_packages.mdx
@@ -23,42 +23,42 @@ Where `package` is the search term that specifies the name (or partial name) of
Note: The available package list is subject to change.
-| Package name | Package installs |
-| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as14-server | This package installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as14-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as14-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as14/share/doc`
Loadable modules: `/usr/edb/as14/lib`
Binaries: `/usr/edb/as14/bin` |
-| edb-as14-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as14-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as14-server-docs | Installs the readme file. |
-| edb-as14-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server |
-| edb-as14-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
-| edb-as14-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
-| edb-as14-server-llvmjit | This package contains support for Just in Time (JIT) compiling parts of EDBAS queries. |
-| edb-as14-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as14-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as14-server-plperl` package is dependent on the platform-supplied version of Perl. |
-| edb-as14-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available from EDB Postgres Advanced Server version 14 onwards. |
-| edb-as14-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as14-pltcl` package is dependent on the platform-supplied version of TCL. |
-| edb-as14-server-sqlprofiler | This package installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as14-server-sqlprotect | This package installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as14-server-sslutils | This package installs functionality that provides SSL support. |
-| edb-as14-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
-| edb-as14-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
-| edb-as14-pgagent | Installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as14-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as14-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
-| edb-as14-pgpool41-extensions | This package creates pgPool extensions required by the server for use with pgpool. |
-| edb-as14-postgis3 | Installs POSTGIS meta RPMs. |
-| edb-as14-postgis3-core | This package provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
-| edb-as14-postgis3-docs | This package installs pdf documentation of PostGIS. |
-| edb-as14-postgis-jdbc | This package installs the essential jdbc driver for PostGIS. |
-| edb-as14-postgis3-utils | This package installs the utilities for PostGIS. |
-| edb-as14-postgis3-gui | This package provides a GUI for PostGIS. |
-| edb-as14-slony-replication | Installs the meta RPM for Slony-I. |
-| edb-as14-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
-| edb-as14-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
+| Package name | Package installs |
+|----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as14-server | This package installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as14-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as14-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as14/share/doc`
Loadable modules: `/usr/edb/as14/lib`
Binaries: `/usr/edb/as14/bin` |
+| edb-as14-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as14-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as14-server-docs | Installs the readme file. |
+| edb-as14-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server |
+| edb-as14-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
+| edb-as14-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
+| edb-as14-server-llvmjit | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
+| edb-as14-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as14-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as14-server-plperl` package is dependent on the platform-supplied version of Perl. |
+| edb-as14-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available from EDB Postgres Advanced Server version 14 onwards. |
+| edb-as14-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as14-pltcl` package is dependent on the platform-supplied version of TCL. |
+| edb-as14-server-sqlprofiler | This package installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as14-server-sqlprotect | This package installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as14-server-sslutils | This package installs functionality that provides SSL support. |
+| edb-as14-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
+| edb-as14-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
+| edb-as14-pgagent | Installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as14-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as14-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
+| edb-as14-pgpool41-extensions | This package creates pgPool extensions required by the server for use with pgpool. |
+| edb-as14-postgis3 | Installs POSTGIS meta RPMs. |
+| edb-as14-postgis3-core | This package provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
+| edb-as14-postgis3-docs | This package installs pdf documentation of PostGIS. |
+| edb-as14-postgis-jdbc | This package installs the essential jdbc driver for PostGIS. |
+| edb-as14-postgis3-utils | This package installs the utilities for PostGIS. |
+| edb-as14-postgis3-gui | This package provides a GUI for PostGIS. |
+| edb-as14-slony-replication | Installs the meta RPM for Slony-I. |
+| edb-as14-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
+| edb-as14-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
| edb-as14-slony-replication-tools | This package contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as14-libicu | These packages contain supporting library files. |
+| edb-as14-libicu | These packages contain supporting library files. |
The following table lists the packages for EDB Postgres Advanced Server 14 supporting components.
@@ -111,51 +111,51 @@ apt list edb*
!!! Note
The available package list is subject to change.
-| Package name | Package installs |
-| -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Package name | Package installs |
+|----------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| edb-as14-server | Installs core components of the EDB Postgres Advanced Server database server. |
| edb-as14-server-client | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
| edb-as14-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as14-server-dev | The `edb-as14-server-dev` package contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as14-server-doc | Installs the readme file. |
+| edb-as14-server-dev | The `edb-as14-server-dev` package contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as14-server-doc | Installs the readme file. |
| edb-as14-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
| edb-as14-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps determine which columns you should index to improve performance in a given workload. |
| edb-as14-server-pldebugger | This package implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as14-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is no longer available from EDB Postgres Advanced Server version 14 onwards. |
-| edb-as14-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as14-pltcl` package is dependent on the platform-supplied version of TCL. |
+| edb-as14-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is no longer available from EDB Postgres Advanced Server version 14 onwards. |
+| edb-as14-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as14-pltcl` package is dependent on the platform-supplied version of TCL. |
| edb-as14-server-sqlprofiler | This package installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
| edb-as14-server-sqlprotect | This package installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as14-server-sslutils | This package installs functionality that provides SSL support. |
-| edb-as14-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
-| edb-as14-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
-| edb-as14-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as14-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
+| edb-as14-server-sslutils | This package installs functionality that provides SSL support. |
+| edb-as14-server-cloneschema | This package installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see the *EDB Postgres Advanced Server Guide*. |
+| edb-as14-server-parallel-clone | This package installs functionality that supports the EDB Clone Schema extension. |
+| edb-as14-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as14-pgsnmpd | SNMP (Simple Network Management Protocol) is a protocol that allows you to supervise an apparatus connected to the network. |
| edb-as14-pgadmin4 | pgAdmin 4 provides a graphical management interface for EDB Postgres Advanced Server and PostgreSQL databases. |
-| edb-as14-pgadmin-apache | Apache support module for pgAdmin 4. |
-| edb-as14-pgadmin4-common | pgAdmin 4 supporting files. |
-| edb-as14-pgadmin4-doc | pgAdmin 4 documentation module. |
-| edb-as14-pgpool41-extensions | This package creates pgPool extensions required by the server. |
-| edb-as14-postgis3 | This package installs POSTGIS support for geospatial data. |
-| edb-as14-postgis3-scripts | This package installs POSTGIS support for geospatial data. |
-| edb-as14-postgis3-doc | This package provides support for POSTGIS. |
-| edb-as14-postgis3-gui | This package provides a GUI for POSTGIS. |
-| edb-as14-postgis-jdbc | This package provides support for POSTGIS. |
-| edb-as14-postgis-scripts | This package provides support for POSTGIS. |
-| edb-as14-pgagent | This package installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as14-slony-replication | This package installs the meta RPM for Slony-I. |
-| edb-as14-slony-replication-core | This package contains core portions of Slony-I to build a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
-| edb-as14-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
-| edb-as14-slony-replication-tools | This package contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as14-pgadmin-apache | Apache support module for pgAdmin 4. |
+| edb-as14-pgadmin4-common | pgAdmin 4 supporting files. |
+| edb-as14-pgadmin4-doc | pgAdmin 4 documentation module. |
+| edb-as14-pgpool41-extensions | This package creates pgPool extensions required by the server. |
+| edb-as14-postgis3 | This package installs POSTGIS support for geospatial data. |
+| edb-as14-postgis3-scripts | This package installs POSTGIS support for geospatial data. |
+| edb-as14-postgis3-doc | This package provides support for POSTGIS. |
+| edb-as14-postgis3-gui | This package provides a GUI for POSTGIS. |
+| edb-as14-postgis-jdbc | This package provides support for POSTGIS. |
+| edb-as14-postgis-scripts | This package provides support for POSTGIS. |
+| edb-as14-pgagent | This package installs pgAgent; pgAgent is a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as14-slony-replication | This package installs the meta RPM for Slony-I. |
+| edb-as14-slony-replication-core | This package contains core portions of Slony-I to build a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
+| edb-as14-slony-replication-docs | This package contains the Slony project documentation (in pdf form). |
+| edb-as14-slony-replication-tools | This package contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install EPEL; for detailed information about installing EPEL, see [Linux installation troubleshooting](/epas/14/troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
| edb-as14-hdfs-fdw | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It is YARN Ready certified with HortonWorks, and provides optimizations for performance with predicate pushdown support. |
-| edb-as14-hdfs-fdw-doc | Documentation for the Hadoop Data Adapter. |
+| edb-as14-hdfs-fdw-doc | Documentation for the Hadoop Data Adapter. |
| edb-as14-mongo-fdw | This EDB EDB Postgres Advanced Server extension implements a Foreign Data Wrapper for MongoDB. |
-| edb-as14-mongo-fdw-doc | Documentation for the Foreign Data Wrapper for MongoDB. |
+| edb-as14-mongo-fdw-doc | Documentation for the Foreign Data Wrapper for MongoDB. |
| edb-as14-mysql-fdw | This EDB EDB Postgres Advanced Server extension implements a Foreign Data Wrapper for MySQL. |
| edb-pgpool41 | This package contains the pgPool-II installer. The pgpool-II utility package acts as a middleman between client applications and Server database servers. pgpool-II functionality is transparent to client applications; client applications connect to pgpool-II instead of directly to EDB Postgres Advanced Server, and pgpool-II manages the connection. EDB supports the following pgpool-II features:
- Load balancing
- Connection pooling
- High availability
- Connection limits
pgpool-II runs as a service on Linux systems, and is not supported on Windows systems.
|
| edb-jdbc | The `edb-jdbc` package includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
| edb-migrationtoolkit | The `edb-migrationtoolkit` package installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase and SQL Server. |
-| edb-pgbouncer114 | This package contains PgBouncer (a lightweight connection pooler). This package requires the libevent package. |
-| edb-efm40 | This package installs EDB Failover Manager that adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
+| edb-pgbouncer114 | This package contains PgBouncer (a lightweight connection pooler). This package requires the libevent package. |
+| edb-efm40 | This package installs EDB Failover Manager that adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
### Updating an RPM installation
diff --git a/product_docs/docs/epas/15/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/15/installing/linux_install_details/rpm_packages.mdx
index b5ff863a9ef..1d966dd96f7 100644
--- a/product_docs/docs/epas/15/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/15/installing/linux_install_details/rpm_packages.mdx
@@ -25,42 +25,42 @@ Where `package` is the search term that specifies the name or partial name of a
!!! Note
The available package list is subject to change.
-| Package name | Package installs |
-| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as15-server | Installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as15-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as15-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as15/share/doc`
Loadable modules: `/usr/edb/as15/lib`
Binaries: `/usr/edb/as15/bin` |
-| edb-as15-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as15-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as15-server-docs | Installs the readme file. |
-| edb-as15-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
-| edb-as15-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps to determine the columns to index to improve performance in a given workload. |
-| edb-as15-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
-| edb-as15-server-llvmjit | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
-| edb-as15-server-pldebugger | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as15-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as15-server-plperl` package depends on the platform-supplied version of Perl. |
-| edb-as15-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available in EDB Postgres Advanced Server version 15 and later. |
-| edb-as15-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as15-pltcl` package depends on the platform-supplied version of TCL. |
-| edb-as15-server-sqlprofiler | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as15-server-sqlprotect | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as15-server-sslutils | Installs functionality that provides SSL support. |
-| edb-as15-server-cloneschema | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB clone schema](../../database_administration/14_edb_clone_schema/). |
-| edb-as15-server-parallel-clone | Installs functionality that supports the EDB Clone Schema extension. |
-| edb-as15-pgagent | Installs pgAgent: Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as15-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as15-pgsnmpd | Simple Network Management Protocol (SNMP) is a protocol that allows you to supervise an apparatus connected to the network. |
-| edb-as15-pgpool41-extensions | Creates pgPool extensions required by the server for use with pgpool. |
-| edb-as15-postgis3 | Installs POSTGIS meta RPMs. |
-| edb-as15-postgis3-core | Provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
-| edb-as15-postgis3-docs | Installs PDF documentation of PostGIS. |
-| edb-as15-postgis-jdbc | Installs the essential jdbc driver for PostGIS. |
-| edb-as15-postgis3-utils | Installs the utilities for PostGIS. |
-| edb-as15-postgis3-gui | Provides a GUI for PostGIS. |
-| edb-as15-slony-replication | Installs the meta RPM for Slony-I. |
-| edb-as15-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
-| edb-as15-slony-replication-docs | Contains the Slony project documentation in PDF form. |
+| Package name | Package installs |
+|----------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as15-server | Installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as15-server-client | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as15-server-contrib | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as15/share/doc`
Loadable modules: `/usr/edb/as15/lib`
Binaries: `/usr/edb/as15/bin` |
+| edb-as15-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as15-server-devel | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as15-server-docs | Installs the readme file. |
+| edb-as15-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
+| edb-as15-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps to determine the columns to index to improve performance in a given workload. |
+| edb-as15-server-libs | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
+| edb-as15-server-llvmjit | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
+| edb-as15-server-pldebugger | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as15-server-plperl | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as15-server-plperl` package depends on the platform-supplied version of Perl. |
+| edb-as15-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available in EDB Postgres Advanced Server version 15 and later. |
+| edb-as15-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as15-pltcl` package depends on the platform-supplied version of TCL. |
+| edb-as15-server-sqlprofiler | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as15-server-sqlprotect | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as15-server-sslutils | Installs functionality that provides SSL support. |
+| edb-as15-server-cloneschema | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB clone schema](../../database_administration/14_edb_clone_schema/). |
+| edb-as15-server-parallel-clone | Installs functionality that supports the EDB Clone Schema extension. |
+| edb-as15-pgagent | Installs pgAgent: Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as15-edbplus | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as15-pgsnmpd | Simple Network Management Protocol (SNMP) is a protocol that allows you to supervise an apparatus connected to the network. |
+| edb-as15-pgpool41-extensions | Creates pgPool extensions required by the server for use with pgpool. |
+| edb-as15-postgis3 | Installs POSTGIS meta RPMs. |
+| edb-as15-postgis3-core | Provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
+| edb-as15-postgis3-docs | Installs PDF documentation of PostGIS. |
+| edb-as15-postgis-jdbc | Installs the essential jdbc driver for PostGIS. |
+| edb-as15-postgis3-utils | Installs the utilities for PostGIS. |
+| edb-as15-postgis3-gui | Provides a GUI for PostGIS. |
+| edb-as15-slony-replication | Installs the meta RPM for Slony-I. |
+| edb-as15-slony-replication-core | Slony-I builds a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
+| edb-as15-slony-replication-docs | Contains the Slony project documentation in PDF form. |
| edb-as15-slony-replication-tools | Contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as15-libicu | Contains the supporting library files. |
+| edb-as15-libicu | Contains the supporting library files. |
The following table lists the packages for EDB Postgres Advanced Server supporting components.
@@ -112,48 +112,48 @@ apt list edb*
!!! Note
The available package list is subject to change.
-| Package name | Package installs |
-| -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as15-server | Installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as15-server-client | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as15-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as15-server-dev | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as15-server-doc | Installs the readme file. |
-| edb-as15-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
-| edb-as15-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps to determine the columns to index to improve performance in a given workload. |
-| edb-as15-server-pldebugger | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as15-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is not available for EDB Postgres Advanced Server version 15 and later. |
-| edb-as15-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as15-pltcl` package depends on the platform-supplied version of TCL. |
-| edb-as15-server-sqlprofiler | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as15-server-sqlprotect | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as15-server-sslutils | Installs functionality that provides SSL support. |
-| edb-as15-server-cloneschema | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB Clone Schema](../../database_administration/14_edb_clone_schema/). |
-| edb-as15-server-parallel-clone | Installs functionality that supports the EDB Clone Schema extension. |
-| edb-as15-edbplus | Contains the files required to install the EDB\*Plus command-line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as15-pgsnmpd | Simple Network Management Protocol (SNMP) allows you to supervise an apparatus connected to the network. |
-| edb-as15-pgadmin4 | pgAdmin 4 provides a graphical management interface for EDB Postgres Advanced Server and PostgreSQL databases. |
-| edb-as15-pgadmin-apache | Apache support module for pgAdmin 4. |
-| edb-as15-pgadmin4-common | pgAdmin 4 supporting files. |
-| edb-as15-pgadmin4-doc | pgAdmin 4 documentation module. |
-| edb-as15-pgpool41-extensions | Creates pgPool extensions required by the server. |
-| edb-as15-postgis3 | Installs POSTGIS support for geospatial data. |
-| edb-as15-postgis3-scripts | Installs POSTGIS support for geospatial data. |
-| edb-as15-postgis3-doc | Provides support for POSTGIS. |
-| edb-as15-postgis3-gui | Provides a GUI for POSTGIS. |
-| edb-as15-postgis-jdbc | Provides support for POSTGIS. |
-| edb-as15-postgis-scripts | Provides support for POSTGIS. |
-| edb-as15-pgagent | Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as15-slony-replication | Installs the meta RPM for Slony-I. |
-| edb-as15-slony-replication-core | Contains core portions of Slony-I to build a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
-| edb-as15-slony-replication-docs | Contains the Slony project documentation in PDF form. |
-| edb-as15-slony-replication-tools | Contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as15-hdfs-fdw | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
-| edb-as15-hdfs-fdw-doc | Documentation for the Hadoop Data Adapter. |
-| edb-as15-mongo-fdw | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
-| edb-as15-mongo-fdw-doc | Documentation for the foreign data wrapper for MongoDB. |
-| edb-as15-mysql-fdw | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
+| Package name | Package installs |
+|----------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as15-server | Installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as15-server-client | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as15-server-core | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as15-server-dev | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as15-server-doc | Installs the readme file. |
+| edb-as15-server-edb-modules | Installs supporting modules for EDB Postgres Advanced Server. |
+| edb-as15-server-indexadvisor | Installs EDB Postgres Advanced Server's Index Advisor feature. The Index Advisor utility helps to determine the columns to index to improve performance in a given workload. |
+| edb-as15-server-pldebugger | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as15-server-plpython3 | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is not available for EDB Postgres Advanced Server version 15 and later. |
+| edb-as15-server-pltcl | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as15-pltcl` package depends on the platform-supplied version of TCL. |
+| edb-as15-server-sqlprofiler | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as15-server-sqlprotect | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as15-server-sslutils | Installs functionality that provides SSL support. |
+| edb-as15-server-cloneschema | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB Clone Schema](../../database_administration/14_edb_clone_schema/). |
+| edb-as15-server-parallel-clone | Installs functionality that supports the EDB Clone Schema extension. |
+| edb-as15-edbplus | Contains the files required to install the EDB\*Plus command-line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as15-pgsnmpd | Simple Network Management Protocol (SNMP) allows you to supervise an apparatus connected to the network. |
+| edb-as15-pgadmin4 | pgAdmin 4 provides a graphical management interface for EDB Postgres Advanced Server and PostgreSQL databases. |
+| edb-as15-pgadmin-apache | Apache support module for pgAdmin 4. |
+| edb-as15-pgadmin4-common | pgAdmin 4 supporting files. |
+| edb-as15-pgadmin4-doc | pgAdmin 4 documentation module. |
+| edb-as15-pgpool41-extensions | Creates pgPool extensions required by the server. |
+| edb-as15-postgis3 | Installs POSTGIS support for geospatial data. |
+| edb-as15-postgis3-scripts | Installs POSTGIS support for geospatial data. |
+| edb-as15-postgis3-doc | Provides support for POSTGIS. |
+| edb-as15-postgis3-gui | Provides a GUI for POSTGIS. |
+| edb-as15-postgis-jdbc | Provides support for POSTGIS. |
+| edb-as15-postgis-scripts | Provides support for POSTGIS. |
+| edb-as15-pgagent | Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as15-slony-replication | Installs the meta RPM for Slony-I. |
+| edb-as15-slony-replication-core | Contains core portions of Slony-I to build a primary-standby system that includes all features and capabilities needed to replicate large databases to a reasonably limited number of standby systems. |
+| edb-as15-slony-replication-docs | Contains the Slony project documentation in PDF form. |
+| edb-as15-slony-replication-tools | Contains the Slony altperl tools and utilities that are useful when deploying Slony replication environments. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as15-hdfs-fdw | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
+| edb-as15-hdfs-fdw-doc | Documentation for the Hadoop Data Adapter. |
+| edb-as15-mongo-fdw | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
+| edb-as15-mongo-fdw-doc | Documentation for the foreign data wrapper for MongoDB. |
+| edb-as15-mysql-fdw | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
| edb-pgpool41 | Contains the pgPool-II installer. The pgpool-II utility package acts as a middleman between client applications and server database servers. pgpool-II functionality is transparent to client applications. Client applications connect to pgpool-II instead of directly to EDB Postgres Advanced Server, and pgpool-II manages the connection. EDB supports the following pgpool-II features:
- Load balancing
- Connection pooling
- High availability
- Connection limits
pgpool-II runs as a service on Linux systems, and isn't supported on Windows systems.
|
-| edb-jdbc | Includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
-| edb-migrationtoolkit | Installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase, and SQL Server. |
-| edb-pgbouncer115 | PgBouncer, a lightweight connection pooler. This package requires the `libevent` package. |
-| edb-efm40 | Installs EDB Failover Manager, which adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
\ No newline at end of file
+| edb-jdbc | Includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
+| edb-migrationtoolkit | Installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase, and SQL Server. |
+| edb-pgbouncer115 | PgBouncer, a lightweight connection pooler. This package requires the `libevent` package. |
+| edb-efm40 | Installs EDB Failover Manager, which adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
\ No newline at end of file
diff --git a/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx b/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
index 4e8637f8978..3ce706ea5f2 100644
--- a/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
+++ b/product_docs/docs/epas/16/installing/linux_install_details/rpm_packages.mdx
@@ -27,40 +27,40 @@ Where `package` is the search term that specifies the name or partial name of a
!!! Note
The available package list is subject to change.
-| Package name | Installed by default | Package installs |
-| -------------------------------- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as16-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as16-server-client | Yes | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as16-server-contrib | Yes | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as16/share/doc`
Loadable modules: `/usr/edb/as16/lib`
Binaries: `/usr/edb/as16/bin` |
-| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as16-server-devel | No | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as16-server-docs | Yes | Installs the readme file. |
-| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
-| edb-as16-server-libs | Yes | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
-| edb-as16-server-llvmjit | No | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
-| edb-as16-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as16-server-plperl | Yes | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-plperl` package depends on the platform-supplied version of Perl. |
-| edb-as16-server-plpython3 | Yes | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available in EDB Postgres Advanced Server version 15 and later. |
-| edb-as16-server-pltcl | Yes | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-pltcl` package depends on the platform-supplied version of TCL. |
-| edb-as16-server-sqlprofiler | No | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as16-server-sqlprotect | Yes | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as16-server-sslutils | No | Installs functionality that provides SSL support. |
-| edb-as16-server-cloneschema | No | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB clone schema](../../database_administration/14_edb_clone_schema/). |
-| edb-as16-server-parallel-clone | No | Installs functionality that supports the EDB Clone Schema extension. |
-| edb-as16-pgagent | No | Installs pgAgent: Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as16-edbplus | No | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as16-pgpool44-extensions | No | Creates pgPool extensions required by the server for use with pgpool. |
-| edb-as16-postgis34 | No | Installs POSTGIS meta RPMs. |
-| edb-as16-postgis34-core | No | Provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
-| edb-as16-postgis34-docs | No | Installs PDF documentation of PostGIS. |
-| edb-as16-postgis34-utils | No | Installs the utilities for PostGIS. |
-| edb-as16-postgis34-gui | No | Provides a GUI for PostGIS. |
-| edb-as16-libicu | No | Contains the supporting library files.
-| edb-as16-hdfs-fdw | No | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
-| edb-as16-hdfs-fdw-doc | No | Documentation for the Hadoop Data Adapter. |
-| edb-as16-mongo-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
-| edb-as16-mongo-fdw-doc | No | Documentation for the foreign data wrapper for MongoDB. |
-| edb-as16-mysql-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
+| Package name | Installed by default | Package installs |
+|--------------------------------|----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as16-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as16-server-client | Yes | Client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as16-server-contrib | Yes | Installs contributed tools and utilities that are distributed with EDB Postgres Advanced Server. Files for these modules are installed in:
Documentation: `/usr/edb/as16/share/doc`
Loadable modules: `/usr/edb/as16/lib`
Binaries: `/usr/edb/as16/bin` |
+| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as16-server-devel | No | Installs the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as16-server-docs | Yes | Installs the readme file. |
+| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
+| edb-as16-server-libs | Yes | Provides the essential shared libraries for any EDB Postgres Advanced Server client program or interface. |
+| edb-as16-server-llvmjit | No | Contains support for just-in-time (JIT) compiling parts of EDB Postgres Advanced Server's queries. You need to install this package separately. |
+| edb-as16-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as16-server-plperl | Yes | Installs the PL/Perl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-plperl` package depends on the platform-supplied version of Perl. |
+| edb-as16-server-plpython3 | Yes | Installs the PL/Python procedural language for EDB Postgres Advanced Server. The PL/Python2 support is no longer available in EDB Postgres Advanced Server version 15 and later. |
+| edb-as16-server-pltcl | Yes | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-pltcl` package depends on the platform-supplied version of TCL. |
+| edb-as16-server-sqlprofiler | No | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as16-server-sqlprotect | Yes | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as16-server-sslutils | No | Installs functionality that provides SSL support. |
+| edb-as16-server-cloneschema | No | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB clone schema](../../database_administration/14_edb_clone_schema/). |
+| edb-as16-server-parallel-clone | No | Installs functionality that supports the EDB Clone Schema extension. |
+| edb-as16-pgagent | No | Installs pgAgent: Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as16-edbplus | No | The `edb-edbplus` package contains the files required to install the EDB\*Plus command line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as16-pgpool44-extensions | No | Creates pgPool extensions required by the server for use with pgpool. |
+| edb-as16-postgis34 | No | Installs POSTGIS meta RPMs. |
+| edb-as16-postgis34-core | No | Provides support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. |
+| edb-as16-postgis34-docs | No | Installs PDF documentation of PostGIS. |
+| edb-as16-postgis34-utils | No | Installs the utilities for PostGIS. |
+| edb-as16-postgis34-gui | No | Provides a GUI for PostGIS. |
+| edb-as16-libicu | No | Contains the supporting library files. |
+| edb-as16-hdfs-fdw | No | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
+| edb-as16-hdfs-fdw-doc | No | Documentation for the Hadoop Data Adapter. |
+| edb-as16-mongo-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
+| edb-as16-mongo-fdw-doc | No | Documentation for the foreign data wrapper for MongoDB. |
+| edb-as16-mysql-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
The following table lists the packages for EDB Postgres Advanced Server supporting components.
@@ -112,41 +112,41 @@ apt list edb*
!!! Note
The available package list is subject to change.
-| Package name | Installed by default | Package installs |
-| -------------------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| edb-as16-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
-| edb-as16-server-client | Yes | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
-| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
-| edb-as16-server-dev | No | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. |
-| edb-as16-server-doc | Yes | Installs the readme file. |
-| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
-| edb-as16-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
-| edb-as16-server-plpython3 | Yes | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is not available for EDB Postgres Advanced Server version 15 and later. |
-| edb-as16-server-pltcl | Yes | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-pltcl` package depends on the platform-supplied version of TCL. |
-| edb-as16-server-sqlprofiler | No | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
-| edb-as16-server-sqlprotect | Yes | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
-| edb-as16-server-sslutils | No | Installs functionality that provides SSL support. |
-| edb-as16-server-cloneschema | No | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB Clone Schema](../../database_administration/14_edb_clone_schema/). |
-| edb-as16-server-parallel-clone | No | Installs functionality that supports the EDB Clone Schema extension. |
-| edb-as16-edbplus | No | Contains the files required to install the EDB\*Plus command-line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
-| edb-as16-pgadmin4 | No | pgAdmin 4 provides a graphical management interface for EDB Postgres Advanced Server and PostgreSQL databases. |
-| edb-as16-pgadmin-apache | No | Apache support module for pgAdmin 4. |
-| edb-as16-pgadmin4-common | No | pgAdmin 4 supporting files. |
-| edb-as16-pgadmin4-doc | No | pgAdmin 4 documentation module. |
-| edb-as16-pgpool44-extensions | No | Creates pgPool extensions required by the server. |
-| edb-as16-postgis34 | No | Installs POSTGIS support for geospatial data. |
-| edb-as16-postgis34-scripts | No | Installs POSTGIS support for geospatial data. |
-| edb-as16-postgis34-doc | No | Provides support for POSTGIS. |
-| edb-as16-postgis34-gui | No | Provides a GUI for POSTGIS. |
-| edb-as16-postgis-scripts | No | Provides support for POSTGIS. |
-| edb-as16-pgagent | No | Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
-| edb-as16-hdfs-fdw | No | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
-| edb-as16-hdfs-fdw-doc | No | Documentation for the Hadoop Data Adapter. |
-| edb-as16-mongo-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
-| edb-as16-mongo-fdw-doc | No | Documentation for the foreign data wrapper for MongoDB. |
-| edb-as16-mysql-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
-| edb-pgpool44 | No | Contains the pgPool-II installer. The pgpool-II utility package acts as a middleman between client applications and server database servers. pgpool-II functionality is transparent to client applications. Client applications connect to pgpool-II instead of directly to EDB Postgres Advanced Server, and pgpool-II manages the connection. EDB supports the following pgpool-II features:
- Load balancing
- Connection pooling
- High availability
- Connection limits
pgpool-II runs as a service on Linux systems, and isn't supported on Windows systems.
|
-| edb-jdbc | No | Includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
-| edb-migrationtoolkit | No | Installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase, and SQL Server. |
-| edb-pgbouncer121 | No | PgBouncer, a lightweight connection pooler. This package requires the `libevent` package. |
-| edb-efm40 | No | Installs EDB Failover Manager, which adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
\ No newline at end of file
+| Package name | Installed by default | Package installs |
+|--------------------------------|----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| edb-as16-server | Yes | Installs core components of the EDB Postgres Advanced Server database server. |
+| edb-as16-server-client | Yes | Includes client programs and utilities that you can use to access and manage EDB Postgres Advanced Server. |
+| edb-as16-server-core | Yes | Includes the programs needed to create the core functionality behind the EDB Postgres Advanced Server database. |
+| edb-as16-server-dev | No | Contains the header files and libraries needed to compile C or C++ applications that directly interact with an EDB Postgres Advanced Server server and the ecpg or ecpgPlus C preprocessor. You need to install this package separately. |
+| edb-as16-server-doc | Yes | Installs the readme file. |
+| edb-as16-server-edb-modules | No | Installs supporting modules for EDB Postgres Advanced Server. |
+| edb-as16-server-pldebugger | No | Implements an API for debugging PL/pgSQL functions on EDB Postgres Advanced Server. |
+| edb-as16-server-plpython3 | Yes | Installs the PL/Python procedural language for EDB Postgres Advanced Server. PL/Python2 support is not available for EDB Postgres Advanced Server version 15 and later. |
+| edb-as16-server-pltcl | Yes | Installs the PL/Tcl procedural language for EDB Postgres Advanced Server. The `edb-as16-server-pltcl` package depends on the platform-supplied version of TCL. |
+| edb-as16-server-sqlprofiler | No | Installs EDB Postgres Advanced Server's SQL Profiler feature. SQL Profiler helps identify and optimize SQL code. |
+| edb-as16-server-sqlprotect | Yes | Installs EDB Postgres Advanced Server's SQL Protect feature. SQL Protect provides protection against SQL injection attacks. |
+| edb-as16-server-sslutils | No | Installs functionality that provides SSL support. |
+| edb-as16-server-cloneschema | No | Installs the EDB Clone Schema extension. For more information about EDB Clone Schema, see [EDB Clone Schema](../../database_administration/14_edb_clone_schema/). |
+| edb-as16-server-parallel-clone | No | Installs functionality that supports the EDB Clone Schema extension. |
+| edb-as16-edbplus | No | Contains the files required to install the EDB\*Plus command-line client. EDB\*Plus commands are compatible with Oracle's SQL\*Plus. |
+| edb-as16-pgadmin4 | No | pgAdmin 4 provides a graphical management interface for EDB Postgres Advanced Server and PostgreSQL databases. |
+| edb-as16-pgadmin-apache | No | Apache support module for pgAdmin 4. |
+| edb-as16-pgadmin4-common | No | pgAdmin 4 supporting files. |
+| edb-as16-pgadmin4-doc | No | pgAdmin 4 documentation module. |
+| edb-as16-pgpool44-extensions | No | Creates pgPool extensions required by the server. |
+| edb-as16-postgis34 | No | Installs POSTGIS support for geospatial data. |
+| edb-as16-postgis34-scripts | No | Installs POSTGIS support for geospatial data. |
+| edb-as16-postgis34-doc | No | Provides support for POSTGIS. |
+| edb-as16-postgis34-gui | No | Provides a GUI for POSTGIS. |
+| edb-as16-postgis-scripts | No | Provides support for POSTGIS. |
+| edb-as16-pgagent | No | Installs pgAgent, a job scheduler for EDB Postgres Advanced Server. Before installing this package, you must install the EPEL repository. For detailed information about installing EPEL, see [Linux installation troubleshooting](../troubleshooting/linux_troubleshooting/installation_troubleshooting_linux/). |
+| edb-as16-hdfs-fdw | No | The Hadoop Data Adapter allows you to query and join data from Hadoop environments with your Postgres or EDB Postgres Advanced Server instances. It's YARN Ready certified with HortonWorks and provides optimizations for performance with predicate pushdown support. |
+| edb-as16-hdfs-fdw-doc | No | Documentation for the Hadoop Data Adapter. |
+| edb-as16-mongo-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MongoDB. |
+| edb-as16-mongo-fdw-doc | No | Documentation for the foreign data wrapper for MongoDB. |
+| edb-as16-mysql-fdw | No | EDB Postgres Advanced Server extension that implements a foreign data wrapper for MySQL. |
+| edb-pgpool44 | No | Contains the pgPool-II installer. The pgpool-II utility package acts as a middleman between client applications and server database servers. pgpool-II functionality is transparent to client applications. Client applications connect to pgpool-II instead of directly to EDB Postgres Advanced Server, and pgpool-II manages the connection. EDB supports the following pgpool-II features:
- Load balancing
- Connection pooling
- High availability
- Connection limits
pgpool-II runs as a service on Linux systems, and isn't supported on Windows systems.
|
+| edb-jdbc | No | Includes the .jar files needed for Java programs to access an EDB Postgres Advanced Server database. |
+| edb-migrationtoolkit | No | Installs Migration Toolkit, facilitating migration to an EDB Postgres Advanced Server database from Oracle, PostgreSQL, MySQL, Sybase, and SQL Server. |
+| edb-pgbouncer121 | No | PgBouncer, a lightweight connection pooler. This package requires the `libevent` package. |
+| edb-efm40 | No | Installs EDB Failover Manager, which adds fault tolerance to database clusters to minimize downtime when a primary database fails by keeping data online in high availability configurations. |
\ No newline at end of file
From 0446c740e075a60d93821467aa7b030484e511b9 Mon Sep 17 00:00:00 2001
From: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com>
Date: Thu, 5 Dec 2024 11:51:51 +0000
Subject: [PATCH 4/6] Added clarity to subscriber-only node purpose.
---
.../docs/pgd/5/node_management/subscriber_only.mdx | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/product_docs/docs/pgd/5/node_management/subscriber_only.mdx b/product_docs/docs/pgd/5/node_management/subscriber_only.mdx
index 2a2348d7604..281eda8c191 100644
--- a/product_docs/docs/pgd/5/node_management/subscriber_only.mdx
+++ b/product_docs/docs/pgd/5/node_management/subscriber_only.mdx
@@ -2,6 +2,9 @@
title: Subscriber-only nodes and groups
---
+Subscriber-only nodes provide a means to scale up the handling of read-only
+requests in PGD.
+
## Subscriber-only nodes
As the name suggests, a subscriber-only node subscribes only to replication
@@ -25,7 +28,10 @@ this topology, a small number of fully active nodes are replicating changes in
all directions. A large number of subscriber-only nodes receive only changes
but never send any changes to any other node in the cluster. This topology
avoids connection explosion due to a large number of nodes yet provides an
-extremely large number of `leaf` nodes that you can use to consume the data.
+extremely large number of `leaf` nodes that you can use to service a large
+number read-only requests without adding load to the replicating cluster.
+
+
## Subscriber-only groups
To make use of subscriber-only nodes, first create a PGD group of type
From df5aa4e5b9ab1bd0d999c6c23747a64fc44d0cac Mon Sep 17 00:00:00 2001
From: gvasquezvargas
Date: Mon, 9 Dec 2024 11:31:13 -0500
Subject: [PATCH 5/6] Added CVEs to EPAS and PGE releases
---
.../epas_rel_notes/epas12_22_00_rel_notes.mdx | 18 +++++-----
.../epas_rel_notes/epas13_18_00_rel_notes.mdx | 16 +++++----
.../epas_rel_notes/epas14_15_0_rel_notes.mdx | 16 +++++----
.../epas_rel_notes/epas15_10_0_rel_notes.mdx | 20 ++++++-----
.../epas_rel_notes/epas16_6_0_rel_notes.mdx | 22 ++++++------
.../17/epas_rel_notes/epas17_2_rel_notes.mdx | 36 ++++++++++---------
.../docs/pge/13/release_notes/index.mdx | 8 +++++
.../docs/pge/14/release_notes/index.mdx | 9 +++++
.../pge/15/release_notes/rel_notes15.10.mdx | 8 +++--
.../pge/16/release_notes/rel_notes16.6.mdx | 8 +++--
.../pge/17/release_notes/rel_notes17.2.mdx | 8 +++--
11 files changed, 102 insertions(+), 67 deletions(-)
diff --git a/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx b/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx
index e1eaf057251..f0cd2785eaa 100644
--- a/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx
+++ b/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx
@@ -5,12 +5,14 @@ navTitle: "Version 12.22.00"
Released: 21 Nov 2024
-EDB Postgres Advanced Server 12.21.26 includes the following enhancements and bug fixes:
+EDB Postgres Advanced Server 12.22 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 12.22. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 12.22 Release Notes](https://www.postgresql.org/docs/release/12.22/) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
-| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
-| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
-| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
-| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Type | Description | Addresses |
+|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 12.22. See the [PostgreSQL 12.22 Release Notes](https://www.postgresql.org/docs/release/12.22/) for more information. | |
+| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
+| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
+| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
+| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Security fix | This release includes the fixes that were incorporated in [12.21](https://www.postgresql.org/docs/release/12.21/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 12.21 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx b/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx
index cb8c9ab8974..777db3c472c 100644
--- a/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx
+++ b/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx
@@ -7,10 +7,12 @@ Released: 21 Nov 2024
EDB Postgres Advanced Server 13.18.00 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 13.18. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 13.18 Release Notes](https://www.postgresql.org/docs/release/13.18/) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
-| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
-| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
-| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
-| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Type | Description | Addresses |
+|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 13.18. See the [PostgreSQL 13.18 Release Notes](https://www.postgresql.org/docs/release/13.18/) for more information. | |
+| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
+| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
+| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
+| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Security fix | This release includes the fixes that were incorporated in [13.17](https://www.postgresql.org/docs/release/13.17/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 13.17 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/epas/14/epas_rel_notes/epas14_15_0_rel_notes.mdx b/product_docs/docs/epas/14/epas_rel_notes/epas14_15_0_rel_notes.mdx
index 0e7a6ce14eb..f4c97bcd7d1 100644
--- a/product_docs/docs/epas/14/epas_rel_notes/epas14_15_0_rel_notes.mdx
+++ b/product_docs/docs/epas/14/epas_rel_notes/epas14_15_0_rel_notes.mdx
@@ -7,10 +7,12 @@ Released: 21 Nov 2024
EDB Postgres Advanced Server 14.15.0 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 14.15. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 14.15 Release Notes](https://www.postgresql.org/docs/release/14.15/) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
-| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
-| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
-| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
-| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Type | Description | Addresses |
+|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 14.15. See the [PostgreSQL 14.15 Release Notes](https://www.postgresql.org/docs/release/14.15/) for more information. | |
+| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
+| Bug fix | Fixed an issue for EDB*Loader. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
+| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
+| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Security fix | This release includes the fixes that were incorporated in [14.14](https://www.postgresql.org/docs/release/14.14/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 14.14 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/epas/15/epas_rel_notes/epas15_10_0_rel_notes.mdx b/product_docs/docs/epas/15/epas_rel_notes/epas15_10_0_rel_notes.mdx
index 299ba80aac6..d9e923da3b7 100644
--- a/product_docs/docs/epas/15/epas_rel_notes/epas15_10_0_rel_notes.mdx
+++ b/product_docs/docs/epas/15/epas_rel_notes/epas15_10_0_rel_notes.mdx
@@ -7,12 +7,14 @@ Released: 21 Nov 2024
EDB Postgres Advanced Server 15.10.0 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 15.10. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 15.10 Release Notes](https://www.postgresql.org/docs/release/15.10/) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
-| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
-| Bug fix | Fixed an issue for `EDB*Loader`. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
-| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
-| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
-| Bug fix | Fixed an issue for `COPY` and `EDB*Loader`. Now the server is not crashed while using dynamic partitioning in `COPY` and `EDB*Loader`. | #38963 |
-| Bug fix | Fixed an issue with tab completion for the object names while using in SQL statements. | |
+| Type | Description | Addresses |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 15.10. See the [PostgreSQL 15.10 Release Notes](https://www.postgresql.org/docs/release/15.10/) for more information. | |
+| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
+| Bug fix | Fixed an issue for `EDB*Loader`. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
+| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
+| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Bug fix | Fixed an issue for `COPY` and `EDB*Loader`. Now the server is not crashed while using dynamic partitioning in `COPY` and `EDB*Loader`. | #38963 |
+| Bug fix | Fixed an issue with tab completion for the object names while using in SQL statements. | |
+| Security fix | This release includes the fixes that were incorporated in [15.9](https://www.postgresql.org/docs/release/15.9/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 15.9 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/epas/16/epas_rel_notes/epas16_6_0_rel_notes.mdx b/product_docs/docs/epas/16/epas_rel_notes/epas16_6_0_rel_notes.mdx
index 150677ac410..67cb1b1ef78 100644
--- a/product_docs/docs/epas/16/epas_rel_notes/epas16_6_0_rel_notes.mdx
+++ b/product_docs/docs/epas/16/epas_rel_notes/epas16_6_0_rel_notes.mdx
@@ -7,13 +7,15 @@ Released: 21 Nov 2024
EDB Postgres Advanced Server 16.6.0 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 16.6. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 16.6 Release Notes](https://www.postgresql.org/docs/release/16.6/) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
-| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
-| Bug fix | Fixed an issue for `EDB*Loader`. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
-| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
-| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
-| Bug fix | Fixed an issue for `COPY` and `EDB*Loader`. Now the server is not crashed while using dynamic partitioning in `COPY` and `EDB*Loader`. | #38963 |
-| Bug fix | Fixed an issue with tab completion for the object names while using in SQL statements. | |
-| Bug fix | Fixed an issue with `ecpg`. Now it supports `EXEC SQL INCLUDE` in Pro*C (`-C PROC`) mode. | #41438 |
\ No newline at end of file
+| Type | Description | Addresses |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 16.6. See the [PostgreSQL 16.6 Release Notes](https://www.postgresql.org/docs/17/release-16-6.html) for more information. | |
+| Bug fix | Fixed an issue for Auditing. With `edb_audit`, now you can audit the initial connection process or authentication messages as well. | #39540 |
+| Bug fix | Fixed an issue for `EDB*Loader`. Now the `negative bitmapset member not allowed` error is resolved for partitioned tables. | #39562 |
+| Bug fix | Fixed an issue for `Oracle Proc*c`and `ecpg with PROC` . Corrected the macro definition in `sqlda-proc.h` to fix the compilation errors when used. | #40573 |
+| Bug fix | Fixed an issue for replication. Now the login of locked account on the physical replica is not allowed. | |
+| Bug fix | Fixed an issue for `COPY` and `EDB*Loader`. Now the server is not crashed while using dynamic partitioning in `COPY` and `EDB*Loader`. | #38963 |
+| Bug fix | Fixed an issue with tab completion for the object names while using in SQL statements. | |
+| Bug fix | Fixed an issue with `ecpg`. Now it supports `EXEC SQL INCLUDE` in Pro*C (`-C PROC`) mode. | #41438 |
+| Security fix | This release includes the fixes that were incorporated in [16.5](https://www.postgresql.org/docs/release/16.5/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 16.5 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/epas/17/epas_rel_notes/epas17_2_rel_notes.mdx b/product_docs/docs/epas/17/epas_rel_notes/epas17_2_rel_notes.mdx
index dd23db89dcf..72df40755b2 100644
--- a/product_docs/docs/epas/17/epas_rel_notes/epas17_2_rel_notes.mdx
+++ b/product_docs/docs/epas/17/epas_rel_notes/epas17_2_rel_notes.mdx
@@ -15,20 +15,22 @@ With the release of EPAS 17, the DRITA is being deprecated and will not be inclu
The `pgAgent` and `adminpack` packages are end of life from EPAS 17 and later.
!!!
-| Type | Description | Category |
-|----------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|
-| Upstream merge | Merged with community PostgreSQL 17.2. See the [PostgreSQL 17 Release Notes](https://www.postgresql.org/docs/17/release-17-2.html) for more information. | |
-| Feature | Added support for the Oracle-compatible `BFILE` native datatype and the `DBMS_LOB` package APIs. See the [DBMS_LOB](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/06_dbms_lob/) for more information. | |
-| Feature | Added support for the Oracle-compatible `DBMS_XMLDOM` package to provide interface for HTML and XML documents. See the [DBMS_XMLDOM](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom) for more information. | |
-| Feature | Added support for the Oracle-compatible `DBMS_ASSERT` package to validate input properties and sanitize user input, thereby reducing the risk of SQL injections. See the [DBMS_ASSERT](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/01a_dbms_assert) for more information. | |
-| Feature | Added support for the Oracle-equivalent `NLS_UPPER`,`NLS_LOWER`, and `NLS_INITCAP` functions. See the [NLS functions](../reference/sql_reference/03_functions_and_operators/nls_functions) for more information. | |
-| Feature | Implemented `alteruser` utility to modify roles in the clusters. See the [alteruser utility](/tools/alteruser_utility/) for more information. | |
-| Enhancement | Added support for the Oracle-compatible `FORALL..MERGE` and `FORALL..SAVE EXCEPTIONS`. See the [FORALL statement](../application_programming/epas_compat_spl/12_working_with_collections/03_using_the_forall_statement/) for more information. | |
-| Enhancement | Added support for the `XMLType` data type to be called as an object type and has predefined member functions and constructors on it. See the [XMLType datatype](../reference/sql_reference/02_data_types/06_xml_type) for more information. | |
-| Enhancement | Added support for JSON log format in the EDB Auditing. This enables to create audit reports in XML, CSV, or JSON format. | |
-| Enhancement | Added support for READ and WRITE privileges for the directory objects. | |
-| Enhancement | Added support for READ and WRITE directory permissions in UTL_FILE APIs. | |
-| Enhancement | Implemented `IMPORT FOREIGN SCHEMA`. This command imports a foreign schema from a foreign server or a database link. | |
-| Enhancement | Added support for `ANYCOMPATIBLE` and "any" pseudo type to NVL function. This allows NVL function to support more types of argument combinations now. | |
-| Enhancement | Added support to audit all the EDB Postgres Advanced Server's modified external function signatures so that PostgreSQL compatible extensions can be compiled along with EDB Postgres Advanced Server. | |
-| Enhancement | EDB*Loader: Enhanced terminator and delimiter matching behavior to consider the server encoding. | |
+| Type | Description | Addresses |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 17.2. See the [PostgreSQL 17.2 Release Notes](https://www.postgresql.org/docs/17/release-17-2.html) for more information. | |
+| Feature | Added support for the Oracle-compatible `BFILE` native datatype and the `DBMS_LOB` package APIs. See the [DBMS_LOB](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/06_dbms_lob/) for more information. | |
+| Feature | Added support for the Oracle-compatible `DBMS_XMLDOM` package to provide interface for HTML and XML documents. See the [DBMS_XMLDOM](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/18_dbms_xmldom) for more information. | |
+| Feature | Added support for the Oracle-compatible `DBMS_ASSERT` package to validate input properties and sanitize user input, thereby reducing the risk of SQL injections. See the [DBMS_ASSERT](../reference/oracle_compatibility_reference/epas_compat_bip_guide/03_built-in_packages/01a_dbms_assert) for more information. | |
+| Feature | Added support for the Oracle-equivalent `NLS_UPPER`,`NLS_LOWER`, and `NLS_INITCAP` functions. See the [NLS functions](../reference/sql_reference/03_functions_and_operators/nls_functions) for more information. | |
+| Feature | Implemented `alteruser` utility to modify roles in the clusters. See the [alteruser utility](/tools/alteruser_utility/) for more information. | |
+| Enhancement | Added support for the Oracle-compatible `FORALL..MERGE` and `FORALL..SAVE EXCEPTIONS`. See the [FORALL statement](../application_programming/epas_compat_spl/12_working_with_collections/03_using_the_forall_statement/) for more information. | |
+| Enhancement | Added support for the `XMLType` data type to be called as an object type and has predefined member functions and constructors on it. See the [XMLType datatype](../reference/sql_reference/02_data_types/06_xml_type) for more information. | |
+| Enhancement | Added support for JSON log format in the EDB Auditing. This enables to create audit reports in XML, CSV, or JSON format. | |
+| Enhancement | Added support for READ and WRITE privileges for the directory objects. | |
+| Enhancement | Added support for READ and WRITE directory permissions in UTL_FILE APIs. | |
+| Enhancement | Implemented `IMPORT FOREIGN SCHEMA`. This command imports a foreign schema from a foreign server or a database link. | |
+| Enhancement | Added support for `ANYCOMPATIBLE` and "any" pseudo type to NVL function. This allows NVL function to support more types of argument combinations now. | |
+| Enhancement | Added support to audit all the EDB Postgres Advanced Server's modified external function signatures so that PostgreSQL compatible extensions can be compiled along with EDB Postgres Advanced Server. | |
+| Enhancement | EDB*Loader: Enhanced terminator and delimiter matching behavior to consider the server encoding. | |
+| Security fix | This release includes the fixes that were incorporated in [17.1](https://www.postgresql.org/docs/release/17.1/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 17.1 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/pge/13/release_notes/index.mdx b/product_docs/docs/pge/13/release_notes/index.mdx
index f92750561f1..eec41796661 100644
--- a/product_docs/docs/pge/13/release_notes/index.mdx
+++ b/product_docs/docs/pge/13/release_notes/index.mdx
@@ -12,6 +12,14 @@ This release is primarily an upstream merge.
Merged with community PostgreSQL 13.18. See the [PostgreSQL 13.18 Release Notes](https://www.postgresql.org/docs/13/release-13-18.html) for more information.
+It also includes the security fixes that were incorporated in [13.17](https://www.postgresql.org/docs/release/13.17/):
+- [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
+- [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
+- [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
+- [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/)
+
+And a remediation to issues caused by the 13.17 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/).
+
## 2ndQuadrant Postgres 13.16.1r1.1.19
Release date: 2024-08-22
diff --git a/product_docs/docs/pge/14/release_notes/index.mdx b/product_docs/docs/pge/14/release_notes/index.mdx
index b571d80f2e3..7b1e0979342 100644
--- a/product_docs/docs/pge/14/release_notes/index.mdx
+++ b/product_docs/docs/pge/14/release_notes/index.mdx
@@ -12,6 +12,15 @@ This release is primarily an upstream merge.
Merged with community PostgreSQL 14.15. See the [PostgreSQL 14.15 Release Notes](https://www.postgresql.org/docs/14/release-14-15.html) for more information.
+It also includes the security fixes that were incorporated in [14.14](https://www.postgresql.org/docs/release/14.14/):
+- [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
+- [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
+- [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
+- [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/)
+
+And a remediation to issues caused by the 14.14 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/).
+
+
## EDB Postgres Extended Server 14.13.1
Release date: 2024-08-22
diff --git a/product_docs/docs/pge/15/release_notes/rel_notes15.10.mdx b/product_docs/docs/pge/15/release_notes/rel_notes15.10.mdx
index fb3bc8cdbf0..435f4f70d75 100644
--- a/product_docs/docs/pge/15/release_notes/rel_notes15.10.mdx
+++ b/product_docs/docs/pge/15/release_notes/rel_notes15.10.mdx
@@ -7,6 +7,8 @@ Released: 21 Nov 2024
New features, enhancements, bug fixes, and other changes in EDB Postgres Extended Server 15.10 include:
-| Type | Description | Ticket |
-|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 15.10. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 15.10 Release Notes](https://www.postgresql.org/docs/15/release-15-10.html) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
+| Type | Description | Ticket |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 15.10. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 15.10 Release Notes](https://www.postgresql.org/docs/15/release-15-10.html) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
+| Security fix | This release includes the fixes that were incorporated in [15.9](https://www.postgresql.org/docs/release/15.9/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 15.9 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/pge/16/release_notes/rel_notes16.6.mdx b/product_docs/docs/pge/16/release_notes/rel_notes16.6.mdx
index d63003701d5..d32c6d714cb 100644
--- a/product_docs/docs/pge/16/release_notes/rel_notes16.6.mdx
+++ b/product_docs/docs/pge/16/release_notes/rel_notes16.6.mdx
@@ -7,6 +7,8 @@ Released: 21 Nov 2024
EDB Postgres Extended Server 16.6 includes the following enhancements and bug fixes:
-| Type | Description | Ticket |
-|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| Upstream merge | Merged with community PostgreSQL 16.6. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 16.6 Release Notes](https://www.postgresql.org/docs/16/release-16-6.html) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
+| Type | Description | Ticket |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 16.6. This release includes a fix for [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). See the [PostgreSQL 16.6 Release Notes](https://www.postgresql.org/docs/16/release-16-6.html) for more information. | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
+| Security fix | This release includes the fixes that were incorporated in [16.5](https://www.postgresql.org/docs/release/16.5/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 16.5 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
diff --git a/product_docs/docs/pge/17/release_notes/rel_notes17.2.mdx b/product_docs/docs/pge/17/release_notes/rel_notes17.2.mdx
index 90883c2a010..0261858aae3 100644
--- a/product_docs/docs/pge/17/release_notes/rel_notes17.2.mdx
+++ b/product_docs/docs/pge/17/release_notes/rel_notes17.2.mdx
@@ -7,6 +7,8 @@ Released: 22 Nov 2024
EDB Postgres Extended Server 17.2 includes the following enhancements and bug fixes:
-| Type | Description | Addresses |
-|----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------|
-| Upstream merge | Merged with community PostgreSQL 17.2. See the [PostgreSQL 17.2 Release Notes](https://www.postgresql.org/docs/17/release-17-2.html) for more information. | |
+| Type | Description | Addresses |
+|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| Upstream merge | Merged with community PostgreSQL 17.2. See the [PostgreSQL 17.2 Release Notes](https://www.postgresql.org/docs/17/release-17-2.html) for more information. | |
+| Security fix | This release includes the fixes that were incorporated in [17.1](https://www.postgresql.org/docs/release/17.1/):
[CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/), [CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/), [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/), [CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) | [CVE-2024-10976](https://www.postgresql.org/support/security/CVE-2024-10976/)
[CVE-2024-10977](https://www.postgresql.org/support/security/CVE-2024-10977/)
[CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/)
[CVE-2024-10979](https://www.postgresql.org/support/security/CVE-2024-10979/) for #43051 |
+| Security fix | This release includes a remediation to issues caused by the 17.1 fix to [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/). | [CVE-2024-10978](https://www.postgresql.org/support/security/CVE-2024-10978/) |
\ No newline at end of file
From 511ed679c81f100a90bc20af320eff52446e93ca Mon Sep 17 00:00:00 2001
From: gvasquezvargas
Date: Mon, 9 Dec 2024 14:45:47 -0500
Subject: [PATCH 6/6] Fixed numbering for 13.x and 12.x versions
---
...pas12_22_00_rel_notes.mdx => epas12_22_27_rel_notes.mdx} | 6 +++---
product_docs/docs/epas/12/epas_rel_notes/index.mdx | 4 ++--
...pas13_18_00_rel_notes.mdx => epas13_18_24_rel_notes.mdx} | 6 +++---
product_docs/docs/epas/13/epas_rel_notes/index.mdx | 4 ++--
product_docs/docs/pge/13/release_notes/index.mdx | 2 +-
5 files changed, 11 insertions(+), 11 deletions(-)
rename product_docs/docs/epas/12/epas_rel_notes/{epas12_22_00_rel_notes.mdx => epas12_22_27_rel_notes.mdx} (97%)
rename product_docs/docs/epas/13/epas_rel_notes/{epas13_18_00_rel_notes.mdx => epas13_18_24_rel_notes.mdx} (97%)
diff --git a/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx b/product_docs/docs/epas/12/epas_rel_notes/epas12_22_27_rel_notes.mdx
similarity index 97%
rename from product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx
rename to product_docs/docs/epas/12/epas_rel_notes/epas12_22_27_rel_notes.mdx
index f0cd2785eaa..94c9718330a 100644
--- a/product_docs/docs/epas/12/epas_rel_notes/epas12_22_00_rel_notes.mdx
+++ b/product_docs/docs/epas/12/epas_rel_notes/epas12_22_27_rel_notes.mdx
@@ -1,11 +1,11 @@
---
-title: EDB Postgres Advanced Server 12.22.00 release notes
-navTitle: "Version 12.22.00"
+title: EDB Postgres Advanced Server 12.22.27 release notes
+navTitle: "Version 12.22.27"
---
Released: 21 Nov 2024
-EDB Postgres Advanced Server 12.22 includes the following enhancements and bug fixes:
+EDB Postgres Advanced Server 12.22.27 includes the following enhancements and bug fixes:
| Type | Description | Addresses |
|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/product_docs/docs/epas/12/epas_rel_notes/index.mdx b/product_docs/docs/epas/12/epas_rel_notes/index.mdx
index 0b9f44f1d17..52f62da3ae3 100644
--- a/product_docs/docs/epas/12/epas_rel_notes/index.mdx
+++ b/product_docs/docs/epas/12/epas_rel_notes/index.mdx
@@ -2,7 +2,7 @@
navTitle: Release Notes
title: "EDB Postgres Advanced Server Release Notes"
navigation:
-- epas12_22_00_rel_notes
+- epas12_22_27_rel_notes
- epas12_20_25_rel_notes
- epas12_19_24_rel_notes
- epas12_18_23_rel_notes
@@ -33,7 +33,7 @@ The EDB Postgres Advanced Server (Advanced Server) documentation describes the l
| Version | Release Date | Upstream Merges |
| ----------------------------------------- | ------------ | -------------------------------------------------------------- |
-| [12.22.00](epas12_22_00_rel_notes.mdx) | 21 Nov 2024 | [12.22](https://www.postgresql.org/docs/12/release-12-22.html) |
+| [12.22.27](epas12_22_27_rel_notes.mdx) | 21 Nov 2024 | [12.22](https://www.postgresql.org/docs/12/release-12-22.html) |
| [12.20.25](epas12_20_25_rel_notes.mdx) | 08 Aug 2024 | [12.20](https://www.postgresql.org/docs/12/release-12-20.html) |
| [12.19.24](epas12_19_24_rel_notes.mdx) | 09 May 2024 | [12.19](https://www.postgresql.org/docs/12/release-12-19.html) |
| [12.18.23](epas12_18_23_rel_notes.mdx) | 08 Feb 2023 | [12.18](https://www.postgresql.org/docs/12/release-12-18.html) |
diff --git a/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx b/product_docs/docs/epas/13/epas_rel_notes/epas13_18_24_rel_notes.mdx
similarity index 97%
rename from product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx
rename to product_docs/docs/epas/13/epas_rel_notes/epas13_18_24_rel_notes.mdx
index 777db3c472c..794a4c049a7 100644
--- a/product_docs/docs/epas/13/epas_rel_notes/epas13_18_00_rel_notes.mdx
+++ b/product_docs/docs/epas/13/epas_rel_notes/epas13_18_24_rel_notes.mdx
@@ -1,11 +1,11 @@
---
-title: EDB Postgres Advanced Server 13.18.00 release notes
-navTitle: "Version 13.18.00"
+title: EDB Postgres Advanced Server 13.18.24 release notes
+navTitle: "Version 13.18.24"
---
Released: 21 Nov 2024
-EDB Postgres Advanced Server 13.18.00 includes the following enhancements and bug fixes:
+EDB Postgres Advanced Server 13.18.24 includes the following enhancements and bug fixes:
| Type | Description | Addresses |
|-------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
diff --git a/product_docs/docs/epas/13/epas_rel_notes/index.mdx b/product_docs/docs/epas/13/epas_rel_notes/index.mdx
index 9b5cf247a4f..31a2175bcf3 100644
--- a/product_docs/docs/epas/13/epas_rel_notes/index.mdx
+++ b/product_docs/docs/epas/13/epas_rel_notes/index.mdx
@@ -2,7 +2,7 @@
navTitle: Release Notes
title: "EDB Postgres Advanced Server Release Notes"
navigation:
-- epas13_18_00_rel_notes
+- epas13_18_24_rel_notes
- epas13_16_22_rel_notes
- epas13_15_21_rel_notes
- epas13_14_20_rel_notes
@@ -26,7 +26,7 @@ The EDB Postgres Advanced Server (Advanced Server) documentation describes the l
| Version | Release Date | Upstream Merges |
|-------------------------------------|--------------|------------------------------------------------------------------------------------------------------------------------|
-| [13.18.00](epas13_18_00_rel_notes) | 21 Nov 2024 | [13.18](https://www.postgresql.org/docs/release/13.18/) |
+| [13.18.24](epas13_18_24_rel_notes) | 21 Nov 2024 | [13.18](https://www.postgresql.org/docs/release/13.18/) |
| [13.16.22](epas13_16_22_rel_notes) | 08 Aug 2024 | [13.16](https://www.postgresql.org/docs/release/13.16/) |
| [13.15.21](epas13_15_21_rel_notes) | 09 May 2024 | [13.15](https://www.postgresql.org/docs/release/13.15/) |
| [13.14.20](epas13_14_20_rel_notes) | 08 Feb 2024 | [13.14](https://www.postgresql.org/docs/release/13.14/) |
diff --git a/product_docs/docs/pge/13/release_notes/index.mdx b/product_docs/docs/pge/13/release_notes/index.mdx
index eec41796661..ff4c31359bb 100644
--- a/product_docs/docs/pge/13/release_notes/index.mdx
+++ b/product_docs/docs/pge/13/release_notes/index.mdx
@@ -4,7 +4,7 @@ navTitle: Release notes
description: Release notes for EDB Postgres Extended Server 13.
---
-## 2ndQuadrant Postgres 13.18
+## 2ndQuadrant Postgres 13.18.24
Release date: 2024-11-21