diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index a34bcd3a4c2..b1b451a9ca7 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -245,6 +245,8 @@ const moveDoc = async (product, platform, version) => { when({product: {name: "EDB Postgres Advanced Server", version: 11}, platform: {name: "Ubuntu 18.04"}}, (ctx) => `epas/11/epas_inst_linux/installing_epas_using_edb_repository/${fmtArchPath(ctx)}/epas_ubuntu18_${fmtArchFilename(ctx)}.mdx`), + + when({product: {name: "Postgres Enterprise Manager server", version: 8}, platform: {name: "RHEL 8 or OL 8"}}, (ctx) => `pem/8/installing_pem_server/pem_server_inst_linux/installing_pem_server_using_edb_repository/${fmtArchPath(ctx)}/pem_server_rhel8_${fmtArchFilename(ctx)}.mdx`), when({product: {name: "Postgres Enterprise Manager server", version: 8}, platform: {name: "RHEL 8"}}, diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index 46539676641..545607a6857 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -1,5 +1,18 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-pgbouncer{% endset %} + +{% import "platformBase/_deploymentConstants.njk" as deploy %} +{% block frontmatter %} +{# + If you modify deployment path here, please first copy the old expression + and add it to the list under "redirects:" below - this ensures we don't + break any existing links. +#} +deployPath: pgbouncer/{{ product.version }}/installing/linux_{{platform.arch}}/pgbouncer_{{deploy.map_platform[platform.name]}}.mdx +redirects: + - pgbouncer/{{ product.version }}/01_installation/install_on_linux/{{deploy.expand_arch[platform.arch]}}/pgbouncer_{{deploy.map_platform_old[platform.name]}}_{{platform.arch | replace(r/_?64/g, "")}}.mdx +{% endblock frontmatter %} + {% block prodprereq %}{% include "platformBase/_epasinstallsameserver.njk" %} {% endblock prodprereq %} diff --git a/install_template/templates/products/edb-pgbouncer/ubuntu-22.04.njk b/install_template/templates/products/edb-pgbouncer/ubuntu-22.04.njk index a0ec7a4ef23..9c2eb233760 100644 --- a/install_template/templates/products/edb-pgbouncer/ubuntu-22.04.njk +++ b/install_template/templates/products/edb-pgbouncer/ubuntu-22.04.njk @@ -1,2 +1,5 @@ {% extends "products/edb-pgbouncer/base.njk" %} -{% set platformBaseTemplate = "ubuntu-22.04" %} \ No newline at end of file +{% set platformBaseTemplate = "ubuntu-22.04" %} +{% block frontmatter %} +{# remove this block when Ubuntu 22 is released #} +{% endblock frontmatter %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpool-ii-extensions/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-pgpool-ii-extensions/almalinux-8-or-rocky-linux-8.njk index f4f867de738..89a731a19a5 100644 --- a/install_template/templates/products/edb-pgpool-ii-extensions/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-pgpool-ii-extensions/almalinux-8-or-rocky-linux-8.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-pgpool-ii/base.njk" %} +{% extends "products/edb-pgpool-ii-extensions/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpool-ii-extensions/base.njk b/install_template/templates/products/edb-pgpool-ii-extensions/base.njk index 43c8a74a013..b83e9fd7c87 100644 --- a/install_template/templates/products/edb-pgpool-ii-extensions/base.njk +++ b/install_template/templates/products/edb-pgpool-ii-extensions/base.njk @@ -1,5 +1,18 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-as--pgpool-extensions{% endset %} + +{% import "platformBase/_deploymentConstants.njk" as deploy %} +{% block frontmatter %} +{# + If you modify deployment path here, please first copy the old expression + and add it to the list under "redirects:" below - this ensures we don't + break any existing links. +#} +deployPath: pgpool/{{ product.version }}/installing_extensions/linux_{{platform.arch}}/pgpoolext_{{deploy.map_platform[platform.name]}}.mdx +redirects: + - pgpool/{{ product.version }}/02_extensions/{{deploy.expand_arch[platform.arch]}}/pgpoolext_{{deploy.map_platform_old[platform.name]}}_{{platform.arch | replace(r/_?64/g, "")}}.mdx +{% endblock frontmatter %} + {% block prodprereq %}{% include "platformBase/_epasinstallsameserver.njk" %} {% endblock prodprereq %} diff --git a/install_template/templates/products/edb-pgpool-ii-extensions/ubuntu-22.04.njk b/install_template/templates/products/edb-pgpool-ii-extensions/ubuntu-22.04.njk index 5397940b97d..aad785ab22b 100644 --- a/install_template/templates/products/edb-pgpool-ii-extensions/ubuntu-22.04.njk +++ b/install_template/templates/products/edb-pgpool-ii-extensions/ubuntu-22.04.njk @@ -1,2 +1,5 @@ {% extends "products/edb-pgpool-ii-extensions/base.njk" %} -{% set platformBaseTemplate = "ubuntu-22.04" %} \ No newline at end of file +{% set platformBaseTemplate = "ubuntu-22.04" %} +{% block frontmatter %} +{# remove this block when Ubuntu 22 is released #} +{% endblock frontmatter %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpool-ii/base.njk b/install_template/templates/products/edb-pgpool-ii/base.njk index 570186f0612..d7a1bcfa52b 100644 --- a/install_template/templates/products/edb-pgpool-ii/base.njk +++ b/install_template/templates/products/edb-pgpool-ii/base.njk @@ -1,5 +1,18 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-pgpool{% endset %} + +{% import "platformBase/_deploymentConstants.njk" as deploy %} +{% block frontmatter %} +{# + If you modify deployment path here, please first copy the old expression + and add it to the list under "redirects:" below - this ensures we don't + break any existing links. +#} +deployPath: pgpool/{{ product.version }}/installing/linux_{{platform.arch}}/pgpool_{{deploy.map_platform[platform.name]}}.mdx +redirects: + - pgpool/{{ product.version }}/01_installing_and_configuring_the_pgpool-II/{{deploy.expand_arch[platform.arch]}}/pgpool_{{deploy.map_platform_old[platform.name]}}_{{platform.arch | replace(r/_?64/g, "")}}.mdx +{% endblock frontmatter %} + {% block prodprereq %}{% include "platformBase/_epasinstallsameserver.njk" %} {% endblock prodprereq %} diff --git a/install_template/templates/products/edb-pgpool-ii/ubuntu-22.04.njk b/install_template/templates/products/edb-pgpool-ii/ubuntu-22.04.njk index ba7e4be955b..fd61afaf7d5 100644 --- a/install_template/templates/products/edb-pgpool-ii/ubuntu-22.04.njk +++ b/install_template/templates/products/edb-pgpool-ii/ubuntu-22.04.njk @@ -1,2 +1,5 @@ {% extends "products/edb-pgpool-ii/ubuntu.njk" %} -{% set platformBaseTemplate = "ubuntu-22.04" %} \ No newline at end of file +{% set platformBaseTemplate = "ubuntu-22.04" %} +{% block frontmatter %} +{# remove this block when Ubuntu 22 is released #} +{% endblock frontmatter %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/base.njk b/install_template/templates/products/migration-toolkit/base.njk index d8351ad6dcd..f5a23963580 100644 --- a/install_template/templates/products/migration-toolkit/base.njk +++ b/install_template/templates/products/migration-toolkit/base.njk @@ -16,5 +16,5 @@ redirects: {% endblock prodprereq %} {% block postinstall %} ## Initial configuration -Before invoking Migration Toolkit, you must download and install JDBC drivers for connecting to the source and target databases. See [Installing a JDBC driver](/migration_toolkit/latest/05_installing_mtk/installing_jdbc_driver/) for details. +Before invoking Migration Toolkit, you must download and install JDBC drivers for connecting to the source and target databases. See [Installing a JDBC driver](/migration_toolkit/latest/installing/installing_jdbc_driver/) for details. {% endblock postinstall %} \ No newline at end of file diff --git a/product_docs/docs/biganimal/release/overview/03a_region_support.mdx b/product_docs/docs/biganimal/release/overview/03a_region_support.mdx index f2f9ffc5862..5c37f349cd0 100644 --- a/product_docs/docs/biganimal/release/overview/03a_region_support.mdx +++ b/product_docs/docs/biganimal/release/overview/03a_region_support.mdx @@ -67,8 +67,10 @@ When using AWS, you can create clusters in the following regions: - US East 2 (Ohio) - US West 2 (Oregon) - Europe (EU) - - Europe 1 (Ireland) - - Europe 2 (London) + - EU Central 1 (Frankfurt) + - EU West 1 (Ireland) + - EU West 2 (London) + ## Next steps diff --git a/product_docs/docs/efm/4/04_configuring_efm/01_cluster_properties.mdx b/product_docs/docs/efm/4/04_configuring_efm/01_cluster_properties.mdx index 38d41001c80..3c9dccb649b 100644 --- a/product_docs/docs/efm/4/04_configuring_efm/01_cluster_properties.mdx +++ b/product_docs/docs/efm/4/04_configuring_efm/01_cluster_properties.mdx @@ -173,7 +173,7 @@ db.port= db.database= ``` -The `db.user` specified must have enough privileges to invoke selected PostgreSQL commands on behalf of Failover Manager. For more information, see [Prerequisites](../01_prerequisites/#prerequisites). +The `db.user` specified must have enough privileges to invoke selected PostgreSQL commands on behalf of Failover Manager. For more information, see [Prerequisites](../installing/prerequisites/#prerequisites). For information about encrypting the password for the database user, see [Encrypting your database password](02_encrypting_database_password/#encrypting_database_password). diff --git a/product_docs/docs/efm/4/04_configuring_efm/06_configuring_for_eager_failover.mdx b/product_docs/docs/efm/4/04_configuring_efm/06_configuring_for_eager_failover.mdx index a39bc31b1f2..5d55cccb262 100644 --- a/product_docs/docs/efm/4/04_configuring_efm/06_configuring_for_eager_failover.mdx +++ b/product_docs/docs/efm/4/04_configuring_efm/06_configuring_for_eager_failover.mdx @@ -64,7 +64,7 @@ To upgrade Failover Manager without stopping EDB Postgres Advanced Server, tempo 1. [Disable Eager Failover](#disabling_the_eager_failover) -2. [Stop and upgrade Failover Manager](../12_upgrading_existing_cluster/#upgrading_existing_cluster) +2. [Stop and upgrade Failover Manager](../upgrading/#upgrading_existing_cluster) 3. [Enable Eager Failover](#enabling_the_eager_failover) diff --git a/product_docs/docs/efm/4/installing/prerequisites.mdx b/product_docs/docs/efm/4/installing/prerequisites.mdx index 9012b6ad29a..24e2b64e048 100644 --- a/product_docs/docs/efm/4/installing/prerequisites.mdx +++ b/product_docs/docs/efm/4/installing/prerequisites.mdx @@ -30,7 +30,7 @@ If an event occurs, Failover Manager invokes the script (if provided) and can al Failover Manager requires that PostgreSQL streaming replication be configured between the primary node and the standby nodes. Failover Manager doesn't support other types of replication. -On database versions 11 (or prior), unless specified with the `-sourcenode` option, a `recovery.conf` file is copied from a random standby node to the stopped primary during switchover. Ensure that the paths in the `recovery.conf` file on your standby nodes are consistent before performing a switchover. For more information about the `-sourcenode` option, see [Promoting a Failover Manager node](05_using_efm/#promote_node). +On database versions 11 (or prior), unless specified with the `-sourcenode` option, a `recovery.conf` file is copied from a random standby node to the stopped primary during switchover. Ensure that the paths in the `recovery.conf` file on your standby nodes are consistent before performing a switchover. For more information about the `-sourcenode` option, see [Promoting a Failover Manager node](../05_using_efm/#promote_node). On database version 12 or later, the `primary_conninfo` and `restore_command` properties are copied from a random standby node to the stopped primary during switchover unless otherwise specified with the `-sourcenode` option. diff --git a/product_docs/docs/efm/4/upgrading.mdx b/product_docs/docs/efm/4/upgrading.mdx index 43e105f62a5..7bca1bf61a4 100644 --- a/product_docs/docs/efm/4/upgrading.mdx +++ b/product_docs/docs/efm/4/upgrading.mdx @@ -14,7 +14,7 @@ legacyRedirectsGenerated: Failover Manager provides a utility to assist you when upgrading a cluster managed by Failover Manager. To upgrade an existing cluster, you must: -1. Install Failover Manager 4.5 on each node of the cluster. For detailed information about installing Failover Manager, see [Installing Failover Manager](03_installing_efm). +1. Install Failover Manager 4.5 on each node of the cluster. For detailed information about installing Failover Manager, see [Installing Failover Manager](installing). 2. After installing Failover Manager, invoke the `efm upgrade-conf` utility to create the `.properties` and `.nodes` files for Failover Manager 4.5. The Failover Manager installer installs the upgrade utility ([efm upgrade-conf](07_using_efm_utility/#efm_upgrade_conf)) to the `/usr/edb/efm-4.5/bin directory`. To invoke the utility, assume root privileges, and invoke the command: diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx index 3d44970b0f9..38dda60eeff 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on RHEL 8 ppc64le # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/ibm_power_ppc64le/mtk55_rhel8_ppcle + - /migration_toolkit/55/05_installing_mtk/install_on_linux/ibm_power_ppc64le/mtk55_rhel8_ppcle --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx index fb019ac528c..3ff7acd834f 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on SLES 12 ppc64le # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/ibm_power_ppc64le/mtk55_sles12_ppcle + - /migration_toolkit/55/05_installing_mtk/install_on_linux/ibm_power_ppc64le/mtk55_sles12_ppcle --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx index d59c7d938a0..a9c9919bb61 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on SLES 15 ppc64le # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/ibm_power_ppc64le/mtk55_sles15_ppcle + - /migration_toolkit/55/05_installing_mtk/install_on_linux/ibm_power_ppc64le/mtk55_sles15_ppcle --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx index 162bb1e6dda..c6db44059f7 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on CentOS 7 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_centos7_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_centos7_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx index 8f8ae5377d6..e56bc2b5c7b 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on Debian 10 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_deb10_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_deb10_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx index 43d55cd74bd..4b27b89b2d3 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on Debian 11 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_deb11_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_deb11_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx index f9eb328bd0d..2c89ab7d06b 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on AlmaLinux 8 or Rocky Linux 8 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_other_linux8_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_other_linux8_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx index 02a541cf75f..837be7eb26a 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on RHEL 7 or OL 7 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_rhel7_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_rhel7_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx index 1b86def6cce..795f43d0514 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on RHEL 8 or OL 8 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_rhel8_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_rhel8_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx index c54909ea9d5..bbd37c68ee8 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on SLES 12 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_sles12_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_sles12_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx index 63f75fc3b1a..17058ea214e 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on SLES 15 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_sles15_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_sles15_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx index 36a5889101a..8ba468b80db 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on Ubuntu 18.04 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_ubuntu18_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_ubuntu18_x86 --- ## Prerequisites diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx index c3974b00ed0..1bd340e58a6 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx @@ -6,7 +6,7 @@ title: Installing Migration Toolkit on Ubuntu 20.04 x86_64 # the documentation team will update the templates accordingly. redirects: - - /migration_toolkit/55/installing/install_on_linux/x86_amd64/mtk55_ubuntu20_x86 + - /migration_toolkit/55/05_installing_mtk/install_on_linux/x86_amd64/mtk55_ubuntu20_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/index.mdx b/product_docs/docs/pgbouncer/1.17/01_installation/index.mdx deleted file mode 100644 index f111a0c12a8..00000000000 --- a/product_docs/docs/pgbouncer/1.17/01_installation/index.mdx +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Installing EDB PgBouncer" -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/installation.html" -navigation: -- install_on_linux -- 04_installing_pgbouncer_on_a_windows_host ---- - - - - -You can install EDB PgBouncer on: - -- [Linux x86-64 (amd64)](install_on_linux/x86_amd64) and [IBM Power (ppc64le)](install_on_linux/ibm_power_ppc64le) -- [Windows x86-64](04_installing_pgbouncer_on_a_windows_host) diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/index.mdx b/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/index.mdx deleted file mode 100644 index 49733f2a714..00000000000 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/index.mdx +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Installing EDB PgBouncer on ppc64le" -navTitle: "IBM Power (ppc64le)" -redirects: - - ../../03a_installing_pgbouncer_on_a_rhel8_ppcle_host -navigation: - - pgbouncer_rhel8_ppcle - - pgbouncer_sles15_ppcle - - pgbouncer_sles12_ppcle ---- - -For operating system-specific install instructions, see: - - - [RHEL 8](pgbouncer_rhel8_ppcle) - - - [SLES 15](pgbouncer_sles15_ppcle) - - [SLES 12](pgbouncer_sles12_ppcle) - - - diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/index.mdx b/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/index.mdx deleted file mode 100644 index eeb8f694c18..00000000000 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/index.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Installing on EDB PgBouncer Linux" -navTitle: "On Linux" -navigation: -- x86_amd64 -- ibm_power_ppc64le -redirects: - - ../03_installing_pgbouncer_on_an_sles_host ---- - - -To install EDB PgBouncer, you must have credentials that allow access to the EnterpriseDB repository. To request credentials that allow you to access an EnterpriseDB repository, see the [EDB Repository Access instructions](https://www.enterprisedb.com/repository-access-request). - -For platform-specific install instructions, see: - -- Linux x86-64 (amd64): - - [RHEL 8/OL 8](x86_amd64/pgbouncer_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](x86_amd64/pgbouncer_other_linux8_x86) - - [RHEL 7/OL 7](x86_amd64/pgbouncer_rhel7_x86) - - [CentOS 7](x86_amd64/pgbouncer_centos7_x86) - - [SLES 15](x86_amd64/pgbouncer_sles15_x86) - - [SLES 12](x86_amd64/pgbouncer_sles12_x86) - - [Ubuntu 20.04](x86_amd64/pgbouncer_ubuntu20_x86) - - [Ubuntu 18.04](x86_amd64/pgbouncer_ubuntu18_x86) - - [Debian 11](x86_amd64/pgbouncer_deb11_x86) - - [Debian 10](x86_amd64/pgbouncer_deb10_x86) - -- Linux on IBM Power (ppc64le): - - [RHEL 8](ibm_power_ppc64le/pgbouncer_rhel8_ppcle) - - - [SLES 15](ibm_power_ppc64le/pgbouncer_sles15_ppcle) - - [SLES 12](ibm_power_ppc64le/pgbouncer_sles12_ppcle) - - - - diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/index.mdx b/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/index.mdx deleted file mode 100644 index 8a9c858943f..00000000000 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/index.mdx +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Installing EDB PgBouncer on x86" -navTitle: "Intel x86 (amd64)" -redirects: - - ../../02_installing_pgbouncer_on_a_debian_or_ubuntu_host/ -navigation: - - pgbouncer_rhel8_x86 - - pgbouncer_other_linux8_x86 - - pgbouncer_rhel7_x86 - - pgbouncer_centos7_x86 - - pgbouncer_sles15_x86 - - pgbouncer_sles12_x86 - - pgbouncer_ubuntu22_x86 - - pgbouncer_ubuntu20_x86 - - pgbouncer_ubuntu18_x86 - - pgbouncer_deb11_x86 - - pgbouncer_deb10_x86 ---- - -For operating system-specific install instructions, see: - - - [RHEL 8/OL 8](pgbouncer_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](pgbouncer_other_linux8_x86) - - [RHEL 7/OL 7](pgbouncer_rhel7_x86) - - [CentOS 7](pgbouncer_centos7_x86) - - [SLES 15](pgbouncer_sles15_x86) - - [SLES 12](pgbouncer_sles12_x86) - - [Ubuntu 20.04](pgbouncer_ubuntu20_x86) - - [Ubuntu 18.04](pgbouncer_ubuntu18_x86) - - [Debian 11](pgbouncer_deb11_x86) - - [Debian 10](pgbouncer_deb10_x86) - diff --git a/product_docs/docs/pgbouncer/1.17/index.mdx b/product_docs/docs/pgbouncer/1.17/index.mdx index 92fdabcb53a..9e34af72b98 100644 --- a/product_docs/docs/pgbouncer/1.17/index.mdx +++ b/product_docs/docs/pgbouncer/1.17/index.mdx @@ -5,6 +5,8 @@ directoryDefaults: navigation: - pgbouncer_rel_notes - supported_platforms + - installing + - 02_configuration_and_usage legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/index.html" diff --git a/product_docs/docs/pgbouncer/1.17/03_uninstallation.mdx b/product_docs/docs/pgbouncer/1.17/installing/03_uninstallation.mdx similarity index 97% rename from product_docs/docs/pgbouncer/1.17/03_uninstallation.mdx rename to product_docs/docs/pgbouncer/1.17/installing/03_uninstallation.mdx index 949687c1cc5..9cdcb05118f 100644 --- a/product_docs/docs/pgbouncer/1.17/03_uninstallation.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/03_uninstallation.mdx @@ -1,13 +1,12 @@ --- title: "Uninstalling" - +redirects: + - /pgbouncer/latest/03_uninstallation/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/uninstallation.html" --- - - This section walks you through uninstalling EDB PgBouncer. ## Uninstalling EDB PgBouncer on a RHEL/Rocky Linux/AlmaLinux host diff --git a/product_docs/docs/pgbouncer/1.17/installing/index.mdx b/product_docs/docs/pgbouncer/1.17/installing/index.mdx new file mode 100644 index 00000000000..8e2d5170635 --- /dev/null +++ b/product_docs/docs/pgbouncer/1.17/installing/index.mdx @@ -0,0 +1,36 @@ +--- +title: "Installing" +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/installation.html" +redirects: + - ../03_installing_pgbouncer_on_an_sles_host + - ../01_installation + - ../01_installation/install_on_linux/ +navigation: +- linux_x86_64 +- linux_ppc64le +- windows +- upgrading +--- + + + +## [Linux x86-64 (amd64)](linux_x86_64) +### Red Hat Enterprise Linux (RHEL) and derivatives +- [RHEL 8](linux_x86_64/pgbouncer_rhel_8), [RHEL 7](linux_x86_64/pgbouncer_rhel_7) +- [Oracle Linux (OL) 8](linux_x86_64/pgbouncer_rhel_8), [Oracle Linux (OL) 7](linux_x86_64/pgbouncer_rhel_7) +- [Rocky Linux 8](linux_x86_64/pgbouncer_other_linux_8) +- [AlmaLinux 8](linux_x86_64/pgbouncer_other_linux_8) +- [CentOS 7](linux_x86_64/pgbouncer_centos_7) +### SUSE Linux Enterprise (SLES) and derivatives +- [SLES 15](linux_x86_64/pgbouncer_sles_15), [SLES 12](linux_x86_64/pgbouncer_sles_12) +### Debian and derivatives +- [Ubuntu 20.04](linux_x86_64/pgbouncer_ubuntu_20), [Ubuntu 18.04](linux_x86_64/pgbouncer_ubuntu_18) +- [Debian 11](linux_x86_64/pgbouncer_debian_11), [Debian 10](linux_x86_64/pgbouncer_debian_10) +## [Linux on IBM Power (ppc64le)](linux_ppc64le) +### Red Hat Enterprise Linux (RHEL) +- [RHEL 8](linux_ppc64le/pgbouncer_rhel_8) +### SUSE Linux Enterprise (SLES) +- [SLES 15](linux_ppc64le/pgbouncer_sles_15), [SLES 12](linux_ppc64le/pgbouncer_sles_12) +## [Windows](windows) diff --git a/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/index.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/index.mdx new file mode 100644 index 00000000000..9aa40ca73f3 --- /dev/null +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/index.mdx @@ -0,0 +1,19 @@ +--- +title: "Installing EDB PgBouncer on ppc64le" +navTitle: "On Linux ppc64le" +redirects: + - ../../03a_installing_pgbouncer_on_a_rhel8_ppcle_host + - /pgbouncer/latest/01_installation/install_on_linux/ibm_power_ppc64le/ + +navigation: + - pgbouncer_rhel_8 + - pgbouncer_sles_15 + - pgbouncer_sles_12 +--- + +For operating system-specific install instructions, see: + + - [RHEL 8](pgbouncer_rhel_8) + + - [SLES 15](pgbouncer_sles_15) + - [SLES 12](pgbouncer_sles_12) diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_rhel8_ppcle.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_rhel_8.mdx similarity index 93% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_rhel8_ppcle.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_rhel_8.mdx index fc56e9132fa..b2f136b2ae0 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_rhel8_ppcle.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 title: Installing EDB pgBouncer on RHEL 8 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_rhel8_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles12_ppcle.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_12.mdx similarity index 92% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles12_ppcle.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_12.mdx index f6147e1b18c..fe1e4e2814c 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles12_ppcle.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB pgBouncer on SLES 12 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles12_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles15_ppcle.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_15.mdx similarity index 92% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles15_ppcle.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_15.mdx index db84b8725f8..31cdc15b6aa 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles15_ppcle.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_ppc64le/pgbouncer_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB pgBouncer on SLES 15 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/ibm_power_ppc64le/pgbouncer_sles15_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/index.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/index.mdx new file mode 100644 index 00000000000..b0f17c1f12d --- /dev/null +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/index.mdx @@ -0,0 +1,34 @@ +--- +title: "Installing EDB PgBouncer on x86" +navTitle: "On Linux x86" +redirects: + - ../../02_installing_pgbouncer_on_a_debian_or_ubuntu_host/ + - /pgbouncer/latest/01_installation/install_on_linux/x86_amd64/ +navigation: + - pgbouncer_rhel_8 + - pgbouncer_other_linux_8 + - pgbouncer_rhel_7 + - pgbouncer_centos_7 + - pgbouncer_sles_15 + - pgbouncer_sles_12 + - pgbouncer_ubuntu_22 + - pgbouncer_ubuntu_20 + - pgbouncer_ubuntu_18 + - pgbouncer_debian_11 + - pgbouncer_debian_10 +--- + +For operating system-specific install instructions, see: + + - [RHEL 8/OL 8](pgbouncer_rhel_8) + + - [Rocky Linux 8/AlmaLinux 8](pgbouncer_other_linux_8) + - [RHEL 7/OL 7](pgbouncer_rhel_7) + - [CentOS 7](pgbouncer_centos_7) + - [SLES 15](pgbouncer_sles_15) + - [SLES 12](pgbouncer_sles_12) + - [Ubuntu 20.04](pgbouncer_ubuntu_20) + - [Ubuntu 18.04](pgbouncer_ubuntu_18) + - [Debian 11](pgbouncer_debian_11) + - [Debian 10](pgbouncer_debian_10) + diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_centos7_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_centos_7.mdx similarity index 92% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_centos7_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_centos_7.mdx index a0670092c19..c7a9d6ad2f9 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_centos7_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_centos_7.mdx @@ -1,10 +1,12 @@ --- navTitle: CentOS 7 title: Installing EDB pgBouncer on CentOS 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_centos7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb10_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_10.mdx similarity index 91% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb10_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_10.mdx index ceb1d9af41b..d14e071a94f 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb10_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_10.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 10 title: Installing EDB pgBouncer on Debian 10 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb10_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb11_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_11.mdx similarity index 91% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb11_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_11.mdx index bf8b7a1ed8e..091a8f038eb 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb11_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_debian_11.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 11 title: Installing EDB pgBouncer on Debian 11 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_deb11_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_other_linux8_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_other_linux_8.mdx similarity index 93% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_other_linux8_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_other_linux_8.mdx index 0ce3ee29992..9c6639b2320 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_other_linux8_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_other_linux_8.mdx @@ -1,10 +1,12 @@ --- navTitle: AlmaLinux 8 or Rocky Linux 8 title: Installing EDB pgBouncer on AlmaLinux 8 or Rocky Linux 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_other_linux8_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel7_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_7.mdx similarity index 93% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel7_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_7.mdx index afe939bca30..95ccc57d83b 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel7_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_7.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 7 or OL 7 title: Installing EDB pgBouncer on RHEL 7 or OL 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel8_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_8.mdx similarity index 94% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel8_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_8.mdx index 40708c9570a..2786083278f 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel8_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 or OL 8 title: Installing EDB pgBouncer on RHEL 8 or OL 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_rhel8_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles12_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_12.mdx similarity index 92% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles12_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_12.mdx index 116210d8311..ac475042444 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles12_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB pgBouncer on SLES 12 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles12_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles15_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_15.mdx similarity index 92% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles15_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_15.mdx index 3d8177b9ad9..586295ad5e3 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles15_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB pgBouncer on SLES 15 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_sles15_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu18_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx similarity index 91% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu18_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx index e887c952a85..de6b34d870d 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu18_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 18.04 title: Installing EDB pgBouncer on Ubuntu 18.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu18_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu20_x86.mdx b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx similarity index 91% rename from product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu20_x86.mdx rename to product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx index ad37e84e510..43dd614ad7e 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu20_x86.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 20.04 title: Installing EDB pgBouncer on Ubuntu 20.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgbouncer/1.17/01_installation/install_on_linux/x86_amd64/pgbouncer_ubuntu20_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgbouncer/1.17/01a_upgrading.mdx b/product_docs/docs/pgbouncer/1.17/installing/upgrading.mdx similarity index 95% rename from product_docs/docs/pgbouncer/1.17/01a_upgrading.mdx rename to product_docs/docs/pgbouncer/1.17/installing/upgrading.mdx index 19953fa7628..89f55e87d9e 100644 --- a/product_docs/docs/pgbouncer/1.17/01a_upgrading.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/upgrading.mdx @@ -1,5 +1,7 @@ --- title: Upgrading +redirects: + - /pgbouncer/latest/01a_upgrading/ --- You can upgrade to a patch release with a simple in place upgrade. A minor release upgrade such as upgrading from 1.15 to 1.16 requires additional steps. diff --git a/product_docs/docs/pgbouncer/1.17/01_installation/04_installing_pgbouncer_on_a_windows_host.mdx b/product_docs/docs/pgbouncer/1.17/installing/windows.mdx similarity index 97% rename from product_docs/docs/pgbouncer/1.17/01_installation/04_installing_pgbouncer_on_a_windows_host.mdx rename to product_docs/docs/pgbouncer/1.17/installing/windows.mdx index 102a742c5b4..7706aa4aa2b 100644 --- a/product_docs/docs/pgbouncer/1.17/01_installation/04_installing_pgbouncer_on_a_windows_host.mdx +++ b/product_docs/docs/pgbouncer/1.17/installing/windows.mdx @@ -1,6 +1,8 @@ --- title: "Installing EDB PgBouncer on a Windows host" navTitle: "On Windows" +redirects: + - /pgbouncer/latest/01_installation/04_installing_pgbouncer_on_a_windows_host/ legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/installing_pgbouncer_on_a_windows_host.html" diff --git a/product_docs/docs/pgd/4/upgrades/bdr_pg_upgrade.mdx b/product_docs/docs/pgd/4/upgrades/bdr_pg_upgrade.mdx index 59bb4c9b7e0..b75915c667f 100644 --- a/product_docs/docs/pgd/4/upgrades/bdr_pg_upgrade.mdx +++ b/product_docs/docs/pgd/4/upgrades/bdr_pg_upgrade.mdx @@ -114,7 +114,7 @@ Steps performed when running `bdr_pg_upgrade`. !!! Note When `--check` is supplied as an argument to `bdr_pg_upgrade`, the CLI - will 1skip` steps that modify the database. + will `skip` steps that modify the database. #### BDR Postgres Checks diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/index.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/index.mdx deleted file mode 100644 index db5cd7ff5e4..00000000000 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/index.mdx +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Installing EDB Pgpool-II on IBM Power (ppc64le)" -navTitle: "IBM Power (ppc64le)" -navigation: - - pgpool_rhel8_ppcle - - pgpool_sles15_ppcle - - pgpool_sles12_ppcle ---- - -For operating system-specific install instructions, see: - - - - [RHEL 8](pgpool_rhel8_ppcle) - - - [SLES 15](pgpool_sles15_ppcle) - - [SLES 12](pgpool_sles12_ppcle) - - diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/index.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/index.mdx deleted file mode 100644 index 1917930616a..00000000000 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/index.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Installing EDB Pgpool-II" -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/installing_and_configuring_the_pgpool-II.html" -navigation: -- x86_amd64 -- ibm_power_ppc64le ---- - -To install EDB Pgpool-II, you must have credentials that allow access to the EnterpriseDB repository. To request credentials that allow you to access an EnterpriseDB repository, see the [EDB Repository Access instructions](https://www.enterprisedb.com/repository-access-request). - -!!! Note - EDB Pgpool-II runs as a service on Linux systems. EDB Pgpool-II isn't supported on Windows. - -This documentation assumes that the user has some knowledge of installation and system administration procedures and has administrative privileges on the host. - -For platform-specific install instructions, see: - -- Linux x86-64 (amd64): - - [RHEL 8/OL 8](x86_amd64/pgpool_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](x86_amd64/pgpool_other_linux8_x86) - - [RHEL 7/OL 7](x86_amd64/pgpool_rhel7_x86) - - [CentOS 7](x86_amd64/pgpool_centos7_x86) - - [SLES 15](x86_amd64/pgpool_sles15_x86) - - [SLES 12](x86_amd64/pgpool_sles12_x86) - - [Ubuntu 20.04](x86_amd64/pgpool_ubuntu20_x86) - - [Ubuntu 18.04](x86_amd64/pgpool_ubuntu18_x86) - - [Debian 11](x86_amd64/pgpool_deb11_x86) - - [Debian 10](x86_amd64/pgpool_deb10_x86) - -- Linux on IBM Power (ppc64le): - - [RHEL 8](ibm_power_ppc64le/pgpool_rhel8_ppcle) - - - [SLES 15](ibm_power_ppc64le/pgpool_sles15_ppcle) - - [SLES 12](ibm_power_ppc64le/pgpool_sles12_ppcle) - - - diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/index.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/index.mdx deleted file mode 100644 index a4dea8c3c5f..00000000000 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/index.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Installing EDB Pgpool-II on Linux x86 (amd64)" -navTitle: "Intel x86 (amd64)" -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/installing_pgbouncer_on_a_debian_or_ubuntu_host.html" -navigation: - - pgpool_rhel8_x86 - - pgpool_other_linux8_x86 - - pgpool_rhel7_x86 - - pgpool_centos7_x86 - - pgpool_sles15_x86 - - pgpool_sles12_x86 - - pgpool_ubuntu22_x86 - - pgpool_ubuntu20_x86 - - pgpool_ubuntu18_x86 - - pgpool_deb11_x86 - - pgpool_deb10_x86 ---- - -For operating system-specific install instructions, see: - - - [RHEL 8/OL 8](pgpool_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](pgpool_other_linux8_x86) - - [RHEL 7/OL 7](pgpool_rhel7_x86) - - [CentOS 7](pgpool_centos7_x86) - - [SLES 15](pgpool_sles15_x86) - - [SLES 12](pgpool_sles12_x86) - - [Ubuntu 20.04](pgpool_ubuntu20_x86) - - [Ubuntu 18.04](pgpool_ubuntu18_x86) - - [Debian 11](pgpool_deb11_x86) - - [Debian 10](pgpool_deb10_x86) - diff --git a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/index.mdx b/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/index.mdx deleted file mode 100644 index fe8651957a3..00000000000 --- a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/index.mdx +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Installing Pgpool extensions on IBM Power (ppc64le)" -navTitle: "IBM Power (ppc64le)" -navigation: - - pgpoolext_rhel8_ppcle - - pgpoolext_sles15_ppcle - - pgpoolext_sles12_ppcle ---- - -For operating system-specific install instructions, see: - - - [RHEL 8](pgpoolext_rhel8_ppcle) - - - [SLES 15](pgpoolext_sles15_ppcle) - - [SLES 12](pgpoolext_sles12_ppcle) diff --git a/product_docs/docs/pgpool/4.3/02_extensions/index.mdx b/product_docs/docs/pgpool/4.3/02_extensions/index.mdx deleted file mode 100644 index be765934060..00000000000 --- a/product_docs/docs/pgpool/4.3/02_extensions/index.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "Installing and managing Pgpool-II extensions" - -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. -- "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/extensions.html" -navigation: -- x86_amd64 -- ibm_power_ppc64le -- creating_pgpool_extensions ---- - -Modules in the extensions directory are additional features to EDB Postgres Advanced Server that are generally not included in the core database. Once loaded in a database, they can function just like built-in features. They allow you to use simple `SELECT` commands to use PCP remotely. - -!!! Note - EDB Pgpool-II extensions are delivered only for supported combinations of EDB Postgres Advanced Server versions and operating systems. - -Before installing EDB Pgpool-II extensions, install the EDB Postgres Advanced Server on your host system. - -For platform-specific install instructions for PgPool-II extensions, see: - -- Linux x86-64 (amd64): - - [RHEL 8/OL 8](x86_amd64/pgpoolext_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](x86_amd64/pgpoolext_other_linux8_x86) - - [RHEL 7/OL 7](x86_amd64/pgpoolext_rhel7_x86) - - [CentOS 7](x86_amd64/pgpoolext_centos7_x86) - - [SLES 15](x86_amd64/pgpoolext_sles15_x86) - - [SLES 12](x86_amd64/pgpoolext_sles12_x86) - - [Ubuntu 20.04](x86_amd64/pgpoolext_ubuntu20_x86) - - [Ubuntu 18.04](x86_amd64/pgpoolext_ubuntu18_x86) - - [Debian 11](x86_amd64/pgpoolext_deb11_x86) - - [Debian 10](x86_amd64/pgpoolext_deb10_x86) - - -- Linux on IBM Power (ppc64le): - - [RHEL 8](ibm_power_ppc64le/pgpoolext_rhel8_ppcle) - - - [SLES 15](ibm_power_ppc64le/pgpoolext_sles15_ppcle) - - - [SLES 12](ibm_power_ppc64le/pgpoolext_sles12_ppcle) - diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/index.mdx b/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/index.mdx deleted file mode 100644 index 4b2a0e820b6..00000000000 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/index.mdx +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Installing Pgpool extensions on Linux x86 (amd64)" -navTitle: "Intel x86 (amd64)" -navigation: - - pgpoolext_rhel8_x86 - - pgpoolext_other_linux8_x86 - - pgpoolext_rhel7_x86 - - pgpoolext_centos7_x86 - - pgpoolext_sles15_x86 - - pgpoolext_sles12_x86 - - pgpoolext_ubuntu22_x86 - - pgpoolext_ubuntu20_x86 - - pgpoolext_ubuntu18_x86 - - pgpoolext_deb11_x86 - - pgpoolext_deb10_x86 ---- - -For operating system-specific install instructions, see: - - - [RHEL 8/OL 8](pgpoolext_rhel8_x86) - - - [Rocky Linux 8/AlmaLinux 8](pgpoolext_other_linux8_x86) - - [RHEL 7/OL 7](pgpoolext_rhel7_x86) - - [CentOS 7](pgpoolext_centos7_x86) - - [SLES 15](pgpoolext_sles15_x86) - - [SLES 12](pgpoolext_sles12_x86) - - [Ubuntu 20.04](pgpoolext_ubuntu20_x86) - - [Ubuntu 18.04](pgpoolext_ubuntu18_x86) - - [Debian 11](pgpoolext_deb11_x86) - - [Debian 10](pgpoolext_deb10_x86) - - diff --git a/product_docs/docs/pgpool/4.3/06_uninstalling_pgpool-II.mdx b/product_docs/docs/pgpool/4.3/06_uninstalling_pgpool-II.mdx deleted file mode 100644 index b470d6af9d7..00000000000 --- a/product_docs/docs/pgpool/4.3/06_uninstalling_pgpool-II.mdx +++ /dev/null @@ -1,106 +0,0 @@ ---- -title: "Uninstalling EDB Pgpool-II and extensions" - -legacyRedirectsGenerated: - # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/uninstalling_pgpool-II.html" ---- - -The following section outlines the process of uninstalling EDB Pgpool-II and its extensions. - -## Uninstalling EDB Pgpool-II - -### Uninstalling EDB Pgpool-II on an RHEL//Rocky Linux/AlmaLinux host - -To uninstall EDB Pgpool-II, assume the identity of the root user and invoke the following command: - -On RHEL/CentOS 7: - -```shell -yum erase edb-pgpool -``` - -On RHEL/Rocky Linux/AlmaLinux 8: - -```shell -dnf erase edb-pgpool -``` - -Where `` is the EDB Pgpool-II version. - -### Uninstalling EDB Pgpool-II on a Debian/Ubuntu host - -To uninstall EDB Pgpool-II on a Debian/Ubuntu host, invoke the following command: - -```shell -apt-get remove -y edb-pgpool -``` - -Where `` is the EDB Pgpool-II version you want to uninstall - -### Uninstalling EDB Pgpool-II on a SLES 12 host - -To uninstall EDB Pgpool-II on a SLES host, assume the identity of the root user and invoke the following command: - -```shell -zypper remove edb-pgpool -``` - -Where <xx> is the EDB Pgpool-II version you wish to uninstall. - -### Uninstalling EDB Pgpool-II Linux uninstaller - -The EDB Pgpool-II graphical installer creates an uninstaller in the installation directory. If you have used the default installation directory, i.e. `/opt/edb`, then uninstaller will be in the `/opt/edb/pgpool` (where <x.y> is the EDB Pgpool-II version you have installed). - -1. Navigate into the directory that contains the uninstaller and assume superuser privileges. Open the uninstaller and click `Yes` to begin uninstalling EDB Pgpool-II. - -2. The uninstallation process begins. Click `OK` when the uninstallation completes. - -## Uninstalling EDB Pgpool-II extensions - -The following section outlines the process of uninstalling EDB Pgpool-II and its extensions. - -### Uninstalling EDB Pgpool-II extensions on an RHEL/CentOS/Rocky Linux/AlmaLinux host - -To remove extensions from the server, execute the following command: - -On RHEL/CentOS 7: - -```shell -yum erase edb-as-pgpool-extensions -``` - -On RHEL/Rocky Linux/AlmaLinux 8: - -```shell -dnf erase edb-as-pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version. - -### Uninstalling EDB Pgpool-II extensions on a SLES 12 host - -To uninstall EDB Pgpool-II extensions on a SLES host, assume the identity of the root user and invoke the following command: - -```shell -zypper remove edb-as-pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version you want to uninstall. - -### Uninstalling EDB Pgpool-II extensions on a Debian/Ubuntu host - -To uninstall EDB Pgpool-II extensions on a Debian/Ubuntu host, invoke the following command: - -```shell -apt-get remove -y edb-as-pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version you want to uninstall. - -### Uninstalling EDB Pgpool-II extensions Linux graphical uninstaller - -The EDB Pgpool-II extensions graphical installer creates an uninstaller in the installation directory. If you have used the default installation directory, i.e. `/opt/edb/as`, then uninstaller will be in the `/opt/edb/as` (where <xx> is the EDB Postgres Advanced Server version you have installed). - -1. Navigate into the directory that contains the uninstaller and assume superuser privileges. Open the uninstaller and click `Yes` to begin uninstalling EDB Pgpool-II extensions. -2. The uninstallation process begins. Click `OK` when the uninstallation completes. diff --git a/product_docs/docs/pgpool/4.3/index.mdx b/product_docs/docs/pgpool/4.3/index.mdx index 2b68af6d8bf..0a96d2aa7e9 100644 --- a/product_docs/docs/pgpool/4.3/index.mdx +++ b/product_docs/docs/pgpool/4.3/index.mdx @@ -5,6 +5,8 @@ directoryDefaults: navigation: - pgpool_rel_notes - supported_platforms + - installing + - installing_extensions legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/index.html" @@ -15,7 +17,7 @@ legacyRedirectsGenerated: -EDB Pgpool-II is an enhanced version of the community Pgpool product, intended to support additional EDB Postgres Advanced Server capabilities. You can use it with PostgreSQL and EDB Postgres Advanced Server. EDB Pgpool-II acts as middleware between client applications and a PostgreSQL database server. +EDB Pgpool-II is an enhanced version of the community Pgpool product, intended to support additional EDB Postgres Advanced Server capabilities. You can use it with PostgreSQL and EDB Postgres Advanced Server. EDB Pgpool-II acts as middleware between client applications and a Postgres database server. Using EDB Pgpool-II adds the following benefits to your application connection infrastructure: @@ -35,6 +37,11 @@ EDB supports the following Pgpool-II functionality: - Limiting exceeding connections - In-memory query cache +EDB Pgpool-II also provides extensions to EDB Postgres Advanced Server functionality. These extensions are packaged as modules in an extensions directory, and they provide additional features for EDB Postgres Advanced Server. These modules are generally not included in the core database. After they are loaded in a database, the extensions can function like built-in features. They allow you to use simple `SELECT` commands to use PCP remotely. + +!!! Note + EDB Pgpool-II extensions are delivered only for supported combinations of EDB Postgres Advanced Server versions and operating systems. +
diff --git a/product_docs/docs/pgpool/4.3/installing/index.mdx b/product_docs/docs/pgpool/4.3/installing/index.mdx new file mode 100644 index 00000000000..09d1dc19624 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing/index.mdx @@ -0,0 +1,32 @@ +--- +title: "Installing EDB Pgpool-II" +navTitle: "Installing" +redirects: + - /pgpool/latest/01_installing_and_configuring_the_pgpool-II/ +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/installing_and_configuring_the_pgpool-II.html" +navigation: +- linux_x86_64 +- linux_ppc64le +- upgrading +- uninstalling +--- + +## [Linux x86-64 (amd64)](linux_x86_64) +### Red Hat Enterprise Linux (RHEL) and derivatives +- [RHEL 8](linux_x86_64/pgpool_rhel_8), [RHEL 7](linux_x86_64/pgpool_rhel_7) +- [Oracle Linux (OL) 8](linux_x86_64/pgpool_rhel_8), [Oracle Linux (OL) 7](linux_x86_64/pgpool_rhel_7) +- [Rocky Linux 8](linux_x86_64/pgpool_other_linux_8) +- [AlmaLinux 8](linux_x86_64/pgpool_other_linux_8) +- [CentOS 7](linux_x86_64/pgpool_centos_7) +### SUSE Linux Enterprise (SLES) and derivatives +- [SLES 15](linux_x86_64/pgpool_sles_15), [SLES 12](linux_x86_64/pgpool_sles_12) +### Debian and derivatives +- [Ubuntu 20.04](linux_x86_64/pgpool_ubuntu_20), [Ubuntu 18.04](linux_x86_64/pgpool_ubuntu_18) +- [Debian 11](linux_x86_64/pgpool_debian_11), [Debian 10](linux_x86_64/pgpool_debian_10) +## [Linux on IBM Power (ppc64le)](linux_ppc64le) +### Red Hat Enterprise Linux (RHEL) +- [RHEL 8](linux_ppc64le/pgpool_rhel_8) +### SUSE Linux Enterprise (SLES) +- [SLES 15](linux_ppc64le/pgpool_sles_15), [SLES 12](linux_ppc64le/pgpool_sles_12) diff --git a/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/index.mdx b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/index.mdx new file mode 100644 index 00000000000..647e7ebdc89 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/index.mdx @@ -0,0 +1,20 @@ +--- +title: "Installing EDB Pgpool-II on IBM Power (ppc64le)" +navTitle: "On Linux ppc64le" +redirects: + - /pgpool/latest/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/ +navigation: + - pgpool_rhel_8 + - pgpool_sles_15 + - pgpool_sles_12 +--- + +For operating system-specific install instructions, see: + + + - [RHEL 8](pgpool_rhel_8) + + - [SLES 15](pgpool_sles_15) + - [SLES 12](pgpool_sles_12) + + diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_rhel8_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_rhel_8.mdx similarity index 93% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_rhel8_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_rhel_8.mdx index 776b84b8da9..ba3541bb867 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_rhel8_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 title: Installing EDB Pgpool-II on RHEL 8 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_rhel8_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles12_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_12.mdx similarity index 92% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles12_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_12.mdx index f641d69bf20..9186a9ccb01 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles12_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB Pgpool-II on SLES 12 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles12_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles15_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_15.mdx similarity index 91% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles15_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_15.mdx index 31e4e7f3f7e..8610af990a7 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles15_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_ppc64le/pgpool_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB Pgpool-II on SLES 15 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/ibm_power_ppc64le/pgpool_sles15_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/installing/linux_x86_64/index.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/index.mdx new file mode 100644 index 00000000000..c1bd004f63b --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/index.mdx @@ -0,0 +1,36 @@ +--- +title: "Installing EDB Pgpool-II on Linux x86 (amd64)" +navTitle: "On Linux x86" +redirects: + - /pgpool/latest/01_installing_and_configuring_the_pgpool-II/x86_amd64/ +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgbouncer/user-guides/pgbouncer-guide/1.0/installing_pgbouncer_on_a_debian_or_ubuntu_host.html" +navigation: + - pgpool_rhel_8 + - pgpool_other_linux_8 + - pgpool_rhel_7 + - pgpool_centos_7 + - pgpool_sles_15 + - pgpool_sles_12 + - pgpool_ubuntu_22 + - pgpool_ubuntu_20 + - pgpool_ubuntu_18 + - pgpool_debian_11 + - pgpool_debian_10 +--- + +For operating system-specific install instructions, see: + + - [RHEL 8/OL 8](pgpool_rhel_8) + + - [Rocky Linux 8/AlmaLinux 8](pgpool_other_linux_8) + - [RHEL 7/OL 7](pgpool_rhel_7) + - [CentOS 7](pgpool_centos_7) + - [SLES 15](pgpool_sles_15) + - [SLES 12](pgpool_sles_12) + - [Ubuntu 20.04](pgpool_ubuntu_20) + - [Ubuntu 18.04](pgpool_ubuntu_18) + - [Debian 11](pgpool_debian_11) + - [Debian 10](pgpool_debian_10) + diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_centos7_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_centos_7.mdx similarity index 92% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_centos7_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_centos_7.mdx index d7b537c172a..e866d6263f0 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_centos7_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_centos_7.mdx @@ -1,10 +1,12 @@ --- navTitle: CentOS 7 title: Installing EDB Pgpool-II on CentOS 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_centos7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb10_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_10.mdx similarity index 91% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb10_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_10.mdx index f012f17debc..ecb5da29a09 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb10_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_10.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 10 title: Installing EDB Pgpool-II on Debian 10 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb10_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb11_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_11.mdx similarity index 91% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb11_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_11.mdx index 32ca17fbe10..32ed621646d 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb11_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_debian_11.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 11 title: Installing EDB Pgpool-II on Debian 11 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_deb11_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_other_linux8_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_other_linux_8.mdx similarity index 92% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_other_linux8_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_other_linux_8.mdx index 5f8832cbe4a..dcb9f81c823 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_other_linux8_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_other_linux_8.mdx @@ -1,10 +1,12 @@ --- navTitle: AlmaLinux 8 or Rocky Linux 8 title: Installing EDB Pgpool-II on AlmaLinux 8 or Rocky Linux 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_other_linux8_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel7_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_7.mdx similarity index 93% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel7_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_7.mdx index 838103fa311..cdba8978bca 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel7_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_7.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 7 or OL 7 title: Installing EDB Pgpool-II on RHEL 7 or OL 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel8_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_8.mdx similarity index 93% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel8_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_8.mdx index 83e3207d484..2e073d63f4d 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel8_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 or OL 8 title: Installing EDB Pgpool-II on RHEL 8 or OL 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_rhel8_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles12_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_12.mdx similarity index 92% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles12_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_12.mdx index beba234de9d..c9070e160ab 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles12_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB Pgpool-II on SLES 12 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles12_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles15_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_15.mdx similarity index 92% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles15_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_15.mdx index 35ef915a0fe..31469155489 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles15_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB Pgpool-II on SLES 15 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_sles15_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu18_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_18.mdx similarity index 91% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu18_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_18.mdx index 00909247c74..84bdebe3c18 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu18_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_18.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 18.04 title: Installing EDB Pgpool-II on Ubuntu 18.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu18_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu20_x86.mdx b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_20.mdx similarity index 91% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu20_x86.mdx rename to product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_20.mdx index 8fc92613f47..fd121865574 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu20_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing/linux_x86_64/pgpool_ubuntu_20.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 20.04 title: Installing EDB Pgpool-II on Ubuntu 20.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/01_installing_and_configuring_the_pgpool-II/x86_amd64/pgpool_ubuntu20_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/installing/uninstalling.mdx b/product_docs/docs/pgpool/4.3/installing/uninstalling.mdx new file mode 100644 index 00000000000..5de2f602c48 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing/uninstalling.mdx @@ -0,0 +1,59 @@ +--- +title: "Uninstalling EDB Pgpool-II" +navTitle: "Uninstalling" +redirects: + - /pgpool/latest/06_uninstalling_pgpool-II/ +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/uninstalling_pgpool-II.html" +--- + +The following sections outline the process for uninstalling EDB Pgpool-II. + +For information about uninstallling extensions, see [Uninstalling EDB Pgpool-II extensions](). + +## Uninstalling EDB Pgpool-II on an RHEL//Rocky Linux/AlmaLinux host + +To uninstall EDB Pgpool-II, assume the identity of the root user and invoke the following command: + +On RHEL/CentOS 7: + +```shell +yum erase edb-pgpool +``` + +On RHEL/Rocky Linux/AlmaLinux 8: + +```shell +dnf erase edb-pgpool +``` + +Where `` is the EDB Pgpool-II version. + +## Uninstalling EDB Pgpool-II on a Debian/Ubuntu host + +To uninstall EDB Pgpool-II on a Debian/Ubuntu host, invoke the following command: + +```shell +apt-get remove -y edb-pgpool +``` + +Where `` is the EDB Pgpool-II version you want to uninstall + +## Uninstalling EDB Pgpool-II on a SLES 12 host + +To uninstall EDB Pgpool-II on a SLES host, assume the identity of the root user and invoke the following command: + +```shell +zypper remove edb-pgpool +``` + +Where <xx> is the EDB Pgpool-II version you wish to uninstall. + +## Uninstalling EDB Pgpool-II Linux uninstaller + +The EDB Pgpool-II graphical installer creates an uninstaller in the installation directory. If you have used the default installation directory, i.e. `/opt/edb`, then uninstaller will be in the `/opt/edb/pgpool` (where <x.y> is the EDB Pgpool-II version you have installed). + +1. Navigate into the directory that contains the uninstaller and assume superuser privileges. Open the uninstaller and click `Yes` to begin uninstalling EDB Pgpool-II. + +2. The uninstallation process begins. Click `OK` when the uninstallation completes. diff --git a/product_docs/docs/pgpool/4.3/installing/upgrading.mdx b/product_docs/docs/pgpool/4.3/installing/upgrading.mdx new file mode 100644 index 00000000000..4fcd9706b32 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing/upgrading.mdx @@ -0,0 +1,50 @@ +--- +title: "Upgrading EDB Pgpool-II" +navTitle: "Upgrading" +redirects: + - /pgpool/latest/05_upgrade/ +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/upgrade.html" +--- + + + +The following information outlines the EDB Pgpool-II minor version upgrade process (for example, to upgrade from 4.2.5 to 4.2.6). + +For information about upgrading extensions, see [Upgrading EDB Pgpool-II extensions](). + +!!! Note + Version 4.3 is a major release. For more details on migrating from earlier versions to version 4.3, see the [Migration Section](https://www.pgpool.net/docs/43/en/html/release-4-3-0.html#MIGRATION-4-3-0). + +When upgrading, assume the identity of the root user and invoke the following command: + +On RHEL/CentOS 7: + +```shell +yum upgrade edb-pgpool +``` + +where <xx> is the EDB Pgpool-II version you want to upgrade. For example, to upgrade from EDB Pgpool-II 4.2.5 to 4.2.6, execute the following command: + +```shell +yum upgrade edb-pgpool42 +``` + +On RHEL/Rocky Linux/AlmaLinux 8: + +```shell +dnf upgrade edb-pgpool +``` + +On Debian/Ubuntu: + +```shell +apt-get upgrade edb-pgpool +``` + +On SLES 12: + +```shell +zypper upgrade edb-pgpool +``` diff --git a/product_docs/docs/pgpool/4.3/02_extensions/creating_pgpool_extensions.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/creating_pgpool_extensions.mdx similarity index 93% rename from product_docs/docs/pgpool/4.3/02_extensions/creating_pgpool_extensions.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/creating_pgpool_extensions.mdx index 901bcf3d3bb..7b23508088f 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/creating_pgpool_extensions.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/creating_pgpool_extensions.mdx @@ -1,5 +1,8 @@ --- title: "Creating Pgpool-II extensions" +navTitle: "Creating extensions" +redirects: + - /pgpool/latest/02_extensions/creating_pgpool_extensions/ --- You must install and create the extensions in each database where you will be using EDB Pgpool-II functionality. To ensure all extensions are available for future databases, you can add the extension to the `template1` database; any extensions installed in the `template1` database will be created in each of the databases that uses `template1` as a template during creation. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/index.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/index.mdx new file mode 100644 index 00000000000..135caaeb455 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing_extensions/index.mdx @@ -0,0 +1,33 @@ +--- +title: "Installing and managing Pgpool-II extensions" +navTitle: "Installing extensions" +redirects: + - /pgpool/latest/02_extensions/ +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. +- "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/extensions.html" +navigation: +- linux_x86_64 +- linux_ppc64le +- creating_pgpool_extensions +- upgrading_extensions +- uninstalling_extensions +--- + +## [Linux x86-64 (amd64)](linux_x86_64) +### Red Hat Enterprise Linux (RHEL) and derivatives +- [RHEL 8](linux_x86_64/pgpoolext_rhel_8), [RHEL 7](linux_x86_64/pgpoolext_rhel_7) +- [Oracle Linux (OL) 8](linux_x86_64/pgpoolext_rhel_8), [Oracle Linux (OL) 7](linux_x86_64/pgpoolext_rhel_7) +- [Rocky Linux 8](linux_x86_64/pgpoolext_other_linux_8) +- [AlmaLinux 8](linux_x86_64/pgpoolext_other_linux_8) +- [CentOS 7](linux_x86_64/pgpoolext_centos_7) +### SUSE Linux Enterprise (SLES) and derivatives +- [SLES 15](linux_x86_64/pgpoolext_sles_15), [SLES 12](linux_x86_64/pgpoolext_sles_12) +### Debian and derivatives +- [Ubuntu 20.04](linux_x86_64/pgpoolext_ubuntu_20), [Ubuntu 18.04](linux_x86_64/pgpoolext_ubuntu_18) +- [Debian 11](linux_x86_64/pgpoolext_debian_11), [Debian 10](linux_x86_64/pgpoolext_debian_10) +## [Linux on IBM Power (ppc64le)](linux_ppc64le) +### Red Hat Enterprise Linux (RHEL) +- [RHEL 8](linux_ppc64le/pgpoolext_rhel_8) +### SUSE Linux Enterprise (SLES) +- [SLES 15](linux_ppc64le/pgpoolext_sles_15), [SLES 12](linux_ppc64le/pgpoolext_sles_12) diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/index.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/index.mdx new file mode 100644 index 00000000000..adfbb96bd59 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/index.mdx @@ -0,0 +1,17 @@ +--- +title: "Installing Pgpool extensions on IBM Power (ppc64le)" +navTitle: "On Linux ppc64le" +redirects: + - /pgpool/latest/02_extensions/ibm_power_ppc64le/ +navigation: + - pgpoolext_rhel_8 + - pgpoolext_sles_15 + - pgpoolext_sles_12 +--- + +For operating system-specific install instructions, see: + + - [RHEL 8](pgpoolext_rhel_8) + + - [SLES 15](pgpoolext_sles_15) + - [SLES 12](pgpoolext_sles_12) diff --git a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_rhel8_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx similarity index 95% rename from product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_rhel8_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx index 05de8570846..8c6694a5b8b 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_rhel8_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 title: Installing EDB Pgpool-II Extensions on RHEL 8 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_rhel8_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles12_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles12_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx index e2f7d65d5fc..95396d09131 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles12_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB Pgpool-II Extensions on SLES 12 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles12_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles15_ppcle.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles15_ppcle.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx index af75c815a4d..1cb477458da 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles15_ppcle.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB Pgpool-II Extensions on SLES 15 ppc64le - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/ibm_power_ppc64le/pgpoolext_sles15_ppcle --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/index.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/index.mdx new file mode 100644 index 00000000000..fe7bf5c6b7c --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/index.mdx @@ -0,0 +1,34 @@ +--- +title: "Installing Pgpool extensions on Linux x86 (amd64)" +navTitle: "On Linux x86" +redirects: + - /pgpool/latest/02_extensions/x86_amd64/ +navigation: + - pgpoolext_rhel_8 + - pgpoolext_other_linux_8 + - pgpoolext_rhel_7 + - pgpoolext_centos_7 + - pgpoolext_sles_15 + - pgpoolext_sles_12 + - pgpoolext_ubuntu_22 + - pgpoolext_ubuntu_20 + - pgpoolext_ubuntu_18 + - pgpoolext_debian_11 + - pgpoolext_debian_10 +--- + +For operating system-specific install instructions, see: + + - [RHEL 8/OL 8](pgpoolext_rhel_8) + + - [Rocky Linux 8/AlmaLinux 8](pgpoolext_other_linux_8) + - [RHEL 7/OL 7](pgpoolext_rhel_7) + - [CentOS 7](pgpoolext_centos_7) + - [SLES 15](pgpoolext_sles_15) + - [SLES 12](pgpoolext_sles_12) + - [Ubuntu 20.04](pgpoolext_ubuntu_20) + - [Ubuntu 18.04](pgpoolext_ubuntu_18) + - [Debian 11](pgpoolext_debian_11) + - [Debian 10](pgpoolext_debian_10) + + diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_centos7_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_centos7_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx index 0ac64f8d728..fad12a057f1 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_centos7_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx @@ -1,10 +1,12 @@ --- navTitle: CentOS 7 title: Installing EDB Pgpool-II Extensions on CentOS 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_centos7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb10_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb10_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx index 99b98dd0a48..7983ea59acd 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb10_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 10 title: Installing EDB Pgpool-II Extensions on Debian 10 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb10_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb11_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb11_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx index 2d2f361da31..d946679eb63 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb11_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx @@ -1,10 +1,12 @@ --- navTitle: Debian 11 title: Installing EDB Pgpool-II Extensions on Debian 11 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_deb11_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_other_linux8_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx similarity index 74% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_other_linux8_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx index 095bd300777..b95be9c7bb1 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_other_linux8_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx @@ -1,10 +1,12 @@ --- navTitle: AlmaLinux 8 or Rocky Linux 8 title: Installing EDB Pgpool-II Extensions on AlmaLinux 8 or Rocky Linux 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_other_linux8_x86 --- ## Prerequisites @@ -32,7 +34,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo dnf -y install edb-pgpool +sudo dnf -y install edb-as--pgpool-extensions ``` -Where `` is the version of EDB PgPool-II you are installing. For example, if you are installing version 4.3, the package name would be `edb-pgpool43`. +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. For example, if you are installing EDB Pgpool-II version 4.3 and EDB Postgres Advanced Server version 14, the package name would be `edb-as-14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel7_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx similarity index 95% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel7_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx index 4f641a600c5..be65b643716 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel7_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 7 or OL 7 title: Installing EDB Pgpool-II Extensions on RHEL 7 or OL 7 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel7_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel8_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx similarity index 95% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel8_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx index 803754789b3..1790fb25ae1 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel8_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx @@ -1,10 +1,12 @@ --- navTitle: RHEL 8 or OL 8 title: Installing EDB Pgpool-II Extensions on RHEL 8 or OL 8 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_rhel8_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles12_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx similarity index 95% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles12_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx index 3720133a40c..25902977e0d 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles12_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 12 title: Installing EDB Pgpool-II Extensions on SLES 12 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles12_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles15_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx similarity index 95% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles15_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx index 1f51733d7ee..d8b3e094bc3 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles15_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx @@ -1,10 +1,12 @@ --- navTitle: SLES 15 title: Installing EDB Pgpool-II Extensions on SLES 15 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_sles15_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu18_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu18_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx index 5e9ab9e2f86..edfa8e1ceb6 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu18_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 18.04 title: Installing EDB Pgpool-II Extensions on Ubuntu 18.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu18_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu20_x86.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx similarity index 94% rename from product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu20_x86.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx index 40082c213a3..b6415e6ba08 100644 --- a/product_docs/docs/pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu20_x86.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx @@ -1,10 +1,12 @@ --- navTitle: Ubuntu 20.04 title: Installing EDB Pgpool-II Extensions on Ubuntu 20.04 x86_64 - # This topic is generated from templates. If you have feedback on it, instead of # editing the page and creating a pull request, please enter a GitHub issue and # the documentation team will update the templates accordingly. + +redirects: + - /pgpool/4.3/02_extensions/x86_amd64/pgpoolext_ubuntu20_x86 --- ## Prerequisites diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/uninstalling_extensions.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/uninstalling_extensions.mdx new file mode 100644 index 00000000000..3e795e21565 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/installing_extensions/uninstalling_extensions.mdx @@ -0,0 +1,54 @@ +--- +title: "Uninstalling EDB Pgpool-II extensions" +navTitle: "Uninstalling extensions" +legacyRedirectsGenerated: + # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. + - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/uninstalling_pgpool-II.html" +--- + +The following sections outline the process of uninstalling EDB Pgpool-II extensions. + +## Uninstalling EDB Pgpool-II extensions on an RHEL/CentOS/Rocky Linux/AlmaLinux host + +To remove extensions from the server, execute the following command: + +On RHEL/CentOS 7: + +```shell +yum erase edb-as-pgpool-extensions +``` + +On RHEL/Rocky Linux/AlmaLinux 8: + +```shell +dnf erase edb-as-pgpool-extensions +``` + +Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version. + +## Uninstalling EDB Pgpool-II extensions on a SLES 12 host + +To uninstall EDB Pgpool-II extensions on a SLES host, assume the identity of the root user and invoke the following command: + +```shell +zypper remove edb-as-pgpool-extensions +``` + +Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version you want to uninstall. + +## Uninstalling EDB Pgpool-II extensions on a Debian/Ubuntu host + +To uninstall EDB Pgpool-II extensions on a Debian/Ubuntu host, invoke the following command: + +```shell +apt-get remove -y edb-as-pgpool-extensions +``` + +Where `` is the EDB Postgres Advanced Server version, and `` is the EDB Pgpool-II extension version you want to uninstall. + +## Uninstalling EDB Pgpool-II extensions Linux graphical uninstaller + +The EDB Pgpool-II extensions graphical installer creates an uninstaller in the installation directory. If you have used the default installation directory, i.e. `/opt/edb/as`, then uninstaller will be in the `/opt/edb/as` (where <xx> is the EDB Postgres Advanced Server version you have installed). + +1. Navigate into the directory that contains the uninstaller and assume superuser privileges. Open the uninstaller and click `Yes` to begin uninstalling EDB Pgpool-II extensions. +2. The uninstallation process begins. Click `OK` when the uninstallation completes. diff --git a/product_docs/docs/pgpool/4.3/05_upgrade.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/upgrading_extensions.mdx similarity index 82% rename from product_docs/docs/pgpool/4.3/05_upgrade.mdx rename to product_docs/docs/pgpool/4.3/installing_extensions/upgrading_extensions.mdx index a89c5eb428c..d4ec8988b07 100644 --- a/product_docs/docs/pgpool/4.3/05_upgrade.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/upgrading_extensions.mdx @@ -1,6 +1,6 @@ --- -title: "Upgrading EDB Pgpool-II and extensions" - +title: "Upgrading EDB Pgpool-II extensions" +navTitle: "Upgrading extensions" legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/pgpool-ii/user-guides/pgpool-ii-guide/1.0/upgrade.html" @@ -8,17 +8,12 @@ legacyRedirectsGenerated: -The following section outlines the EDB Pgpool-II and EDB Pgpool-II extensions upgrade process. +The following sections outline the minor version upgrade process for EDB Pgpool-II extensions (for example, upgrading from 4.2.5 to 4.2.6). !!! Note 4.3 is a major release. For more details on migrating from earlier versions to version 4.3, see the [Migration Section](https://www.pgpool.net/docs/43/en/html/release-4-3-0.html#MIGRATION-4-3-0). - -## Upgrading EDB Pgpool-II - -The following section outlines the EDB Pgpool-II minor version upgrade process (for example, to upgrade from 4.2.5 to 4.2.6): - -Assume the identity of the root user and invoke the following command: +When upgrading, assume the identity of the root user and invoke the following command: On RHEL/CentOS 7: diff --git a/product_docs/docs/postgis/3.2/01_release_notes/rel_notes312.mdx b/product_docs/docs/postgis/3.2/01_release_notes/rel_notes312.mdx index 60a5a6a8991..361833672a8 100644 --- a/product_docs/docs/postgis/3.2/01_release_notes/rel_notes312.mdx +++ b/product_docs/docs/postgis/3.2/01_release_notes/rel_notes312.mdx @@ -15,4 +15,4 @@ New features, enhancements, bug fixes, and other changes in PostGIS 3.1.4 includ - Before upgrading to version 3.1.2, you must upgrade to 3.1.1 first as an intermediate step. - When the PostGIS data has a dependency on the raster functions, upgrading to PostGIS 3.1.2 requires dumping and reloading the data. - See the [upgrade section](../03_upgrading_postgis/) for details. \ No newline at end of file + See the [upgrade section](../installing/upgrading/) for details. \ No newline at end of file diff --git a/product_docs/docs/postgis/3.2/installing/upgrading.mdx b/product_docs/docs/postgis/3.2/installing/upgrading.mdx index 6160fd41076..a73e0993e34 100644 --- a/product_docs/docs/postgis/3.2/installing/upgrading.mdx +++ b/product_docs/docs/postgis/3.2/installing/upgrading.mdx @@ -42,7 +42,7 @@ To avoid accidental upgrades, PostGIS version 3.1 and 3.2 use different package For more information, see [Uninstalling PostGIS](/postgis/latest/installing/uninstalling/). -1. Install PostGIS version 3.2. For instructions, see [Installing PostGIS on RHEL 7/OL 7 x86](/postgis/latest/01a_installing_postgis/installing_on_linux/x86_amd64/postgis_rhel7_x86/). +1. Install PostGIS version 3.2. For instructions, see [Installing PostGIS on RHEL 7/OL 7 x86](/postgis/latest/installing/linux_x86_64/postgis_rhel_7/). 1. Upgrade the PostGIS extensions using the following command: