From 5b919f603133b7898d423b85206e1cc61cb9fd71 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 12 Jan 2023 08:25:49 -0500 Subject: [PATCH 01/10] BigAnimal: more detail for CLI commands for faraway replicas --- .../docs/biganimal/release/reference/cli/using_features.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/product_docs/docs/biganimal/release/reference/cli/using_features.mdx b/product_docs/docs/biganimal/release/reference/cli/using_features.mdx index d69c942ac56..76abceea9b6 100644 --- a/product_docs/docs/biganimal/release/reference/cli/using_features.mdx +++ b/product_docs/docs/biganimal/release/reference/cli/using_features.mdx @@ -5,7 +5,9 @@ navTitle: Using BigAnimal features ## Managing faraway replicas -You can use the CLI to create, promote, and get information on faraway replicas. +You can use the faraway replica-specific CLI commands to [create](#create-a-faraway-replica), [promote](#promote-a-faraway-replica), and [get information](#get-information-on-faraway-replicas) on faraway replicas. + +To update, restore, and delete faraway replicas, use the update-cluster, delete-cluster, and restore-cluster commands. See [Managing clusters with the CLI](/biganimal/latest/reference/cli/managing_clusters/) for more information. ### Create a faraway replica You use the `create-faraway-replica` command to create a replica. You can use either interactive mode or a config file. The example shows interactive mode: From 5610fcd0ddc91bb470e2e466bdfe6770a2a7bc63 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 12 Jan 2023 08:27:47 -0500 Subject: [PATCH 02/10] made ordering consistent --- .../docs/biganimal/release/reference/cli/using_features.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/biganimal/release/reference/cli/using_features.mdx b/product_docs/docs/biganimal/release/reference/cli/using_features.mdx index 76abceea9b6..646b56771e7 100644 --- a/product_docs/docs/biganimal/release/reference/cli/using_features.mdx +++ b/product_docs/docs/biganimal/release/reference/cli/using_features.mdx @@ -7,7 +7,7 @@ navTitle: Using BigAnimal features You can use the faraway replica-specific CLI commands to [create](#create-a-faraway-replica), [promote](#promote-a-faraway-replica), and [get information](#get-information-on-faraway-replicas) on faraway replicas. -To update, restore, and delete faraway replicas, use the update-cluster, delete-cluster, and restore-cluster commands. See [Managing clusters with the CLI](/biganimal/latest/reference/cli/managing_clusters/) for more information. +To update, delete, and restore faraway replicas, use the update-cluster, delete-cluster, and restore-cluster commands. See [Managing clusters with the CLI](/biganimal/latest/reference/cli/managing_clusters/) for more information. ### Create a faraway replica You use the `create-faraway-replica` command to create a replica. You can use either interactive mode or a config file. The example shows interactive mode: From 4187f6b5741906d003df3a3c48de47e4c48beb93 Mon Sep 17 00:00:00 2001 From: Ashutosh Bapat <39807482+ashutosh-bapat@users.noreply.github.com> Date: Wed, 2 Nov 2022 19:47:38 +0530 Subject: [PATCH 03/10] A note on PASSWORD_PROFILE_FUNCTION As per discussion in BDR-2761 (https://enterprisedb.atlassian.net/browse/BDR-2761), we should document the restrictions on PASSWORD_PROFILE_FUNCTION. --- product_docs/docs/pgd/4/bdr/ddl.mdx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/4/bdr/ddl.mdx b/product_docs/docs/pgd/4/bdr/ddl.mdx index 8af78b060e7..ed75b46b633 100644 --- a/product_docs/docs/pgd/4/bdr/ddl.mdx +++ b/product_docs/docs/pgd/4/bdr/ddl.mdx @@ -371,7 +371,7 @@ under the following table. | ALTER PACKAGE | Y | Y | DDL | | ALTER POLICY | Y | Y | DDL | | ALTER PROCEDURE | Y | Y | DDL | -| ALTER PROFILE | Y | Y | DDL | +| ALTER PROFILE | Y | Y | [Details](#bdr_ddl_allowed_CreateAlterProfile) | | ALTER PUBLICATION | Y | Y | DDL | | ALTER QUEUE | Y | Y | DDL | | ALTER QUEUE TABLE | Y | Y | DDL | @@ -435,7 +435,7 @@ under the following table. | CREATE PACKAGE BODY | Y | Y | DDL | | CREATE POLICY | Y | Y | DML | | CREATE PROCEDURE | Y | Y | DDL | -| CREATE PROFILE | Y | Y | DDL | +| CREATE PROFILE | Y | Y | [Details](#bdr_ddl_allowed_CreateAlterProfile) | | CREATE PUBLICATION | Y | Y | DDL | | CREATE QUEUE | Y | Y | DDL | | CREATE QUEUE TABLE | Y | Y | DDL | @@ -820,6 +820,14 @@ All variants of `COMMENT ON` are allowed, but
+### CREATE PROFILE or ALTER PROFILE + +The `PASSWORD_VERIFY_FUNCTION` associated with the PROFILE should be `IMMUTABLE` if the function is `SECURITY DEFINER`. +Such a `CREATE PROFILE` or `ALTER PROFILE` command will be replicated but subsequent CREATE USER or ALTER USER using this PROFILE will +break the replication due to `writer` worker throwing error `cannot change current role within security-restricted operation`. + +
+ ### CREATE SEQUENCE Generally `CREATE SEQUENCE` is supported, but when using global From f7679dd5d8b5dd28ffb0d13461de056abcac1945 Mon Sep 17 00:00:00 2001 From: Ashutosh Bapat <39807482+ashutosh-bapat@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:09:08 +0530 Subject: [PATCH 04/10] use lower case to refer to database object like profile Co-authored-by: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> --- product_docs/docs/pgd/4/bdr/ddl.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/pgd/4/bdr/ddl.mdx b/product_docs/docs/pgd/4/bdr/ddl.mdx index ed75b46b633..a8e717f5421 100644 --- a/product_docs/docs/pgd/4/bdr/ddl.mdx +++ b/product_docs/docs/pgd/4/bdr/ddl.mdx @@ -822,7 +822,7 @@ All variants of `COMMENT ON` are allowed, but ### CREATE PROFILE or ALTER PROFILE -The `PASSWORD_VERIFY_FUNCTION` associated with the PROFILE should be `IMMUTABLE` if the function is `SECURITY DEFINER`. +The `PASSWORD_VERIFY_FUNCTION` associated with the profile should be `IMMUTABLE` if the function is `SECURITY DEFINER`. Such a `CREATE PROFILE` or `ALTER PROFILE` command will be replicated but subsequent CREATE USER or ALTER USER using this PROFILE will break the replication due to `writer` worker throwing error `cannot change current role within security-restricted operation`. From ff2372b9fcacb874ceec931551c4a6a181964ccf Mon Sep 17 00:00:00 2001 From: Ashutosh Bapat <39807482+ashutosh-bapat@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:10:01 +0530 Subject: [PATCH 05/10] Accept grammar and style suggestion Co-authored-by: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> --- product_docs/docs/pgd/4/bdr/ddl.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/pgd/4/bdr/ddl.mdx b/product_docs/docs/pgd/4/bdr/ddl.mdx index a8e717f5421..0b6c4a11047 100644 --- a/product_docs/docs/pgd/4/bdr/ddl.mdx +++ b/product_docs/docs/pgd/4/bdr/ddl.mdx @@ -823,7 +823,7 @@ All variants of `COMMENT ON` are allowed, but ### CREATE PROFILE or ALTER PROFILE The `PASSWORD_VERIFY_FUNCTION` associated with the profile should be `IMMUTABLE` if the function is `SECURITY DEFINER`. -Such a `CREATE PROFILE` or `ALTER PROFILE` command will be replicated but subsequent CREATE USER or ALTER USER using this PROFILE will +Such a `CREATE PROFILE` or `ALTER PROFILE` command will be replicated but subsequent `CREATE USER` or `ALTER USER` commands using this profile will break the replication due to `writer` worker throwing error `cannot change current role within security-restricted operation`.
From 41d0b4f497016eb1addee5d8216b4d7f9444b45f Mon Sep 17 00:00:00 2001 From: Ashutosh Bapat <39807482+ashutosh-bapat@users.noreply.github.com> Date: Wed, 16 Nov 2022 15:10:31 +0530 Subject: [PATCH 06/10] Accept grammar suggestion Co-authored-by: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> --- product_docs/docs/pgd/4/bdr/ddl.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/pgd/4/bdr/ddl.mdx b/product_docs/docs/pgd/4/bdr/ddl.mdx index 0b6c4a11047..8d999deda25 100644 --- a/product_docs/docs/pgd/4/bdr/ddl.mdx +++ b/product_docs/docs/pgd/4/bdr/ddl.mdx @@ -824,7 +824,7 @@ All variants of `COMMENT ON` are allowed, but The `PASSWORD_VERIFY_FUNCTION` associated with the profile should be `IMMUTABLE` if the function is `SECURITY DEFINER`. Such a `CREATE PROFILE` or `ALTER PROFILE` command will be replicated but subsequent `CREATE USER` or `ALTER USER` commands using this profile will -break the replication due to `writer` worker throwing error `cannot change current role within security-restricted operation`. +break the replication due to the `writer` worker throwing the error: `cannot change current role within security-restricted operation`.
From d2dbb645a8e19244850d34cc12dd2a5893e8174c Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 16 Jan 2023 10:36:50 -0500 Subject: [PATCH 07/10] Install instructions: codebuilder fix for EPRS and package name fix for pgPool --- .../templates/products/edb-pgpool-ii-extensions/base.njk | 4 ++-- .../installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx | 4 ++-- .../installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx | 4 ++-- .../installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx | 4 ++-- .../installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx | 4 ++-- .../linux_x86_64/pgpoolext_debian_10.mdx | 4 ++-- .../linux_x86_64/pgpoolext_debian_11.mdx | 4 ++-- .../linux_x86_64/pgpoolext_other_linux_8.mdx | 4 ++-- .../installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx | 4 ++-- .../installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx | 4 ++-- .../installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx | 4 ++-- .../installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx | 4 ++-- .../linux_x86_64/pgpoolext_ubuntu_18.mdx | 4 ++-- .../linux_x86_64/pgpoolext_ubuntu_20.mdx | 4 ++-- 14 files changed, 28 insertions(+), 28 deletions(-) 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 b83e9fd7c87..985337804cf 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,5 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-as--pgpool-extensions{% endset %} +{% set packageName %}edb-as-pgpool-extensions{% endset %} {% import "platformBase/_deploymentConstants.njk" as deploy %} {% block frontmatter %} @@ -18,5 +18,5 @@ redirects: {% endblock prodprereq %} {% block installCommand %} {{super()}} -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`. +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-as14-pgpool43-extensions`. {% endblock installCommand %} diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx index e372d23aaee..870bd46cc60 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx @@ -36,7 +36,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo dnf -y install edb-as--pgpool-extensions +sudo dnf -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx index 95396d09131..c3305cc096d 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx @@ -35,7 +35,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo zypper -n install edb-as--pgpool-extensions +sudo zypper -n install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx index 1cb477458da..902f7ce3c47 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx @@ -34,7 +34,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo zypper -n install edb-as--pgpool-extensions +sudo zypper -n install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx index fad12a057f1..1de603558d5 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx @@ -32,7 +32,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo yum -y install edb-as--pgpool-extensions +sudo yum -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx index 7983ea59acd..64fa885215f 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx @@ -24,7 +24,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo apt-get -y install edb-as--pgpool-extensions +sudo apt-get -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx index d946679eb63..fcc838966af 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx @@ -24,7 +24,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo apt-get -y install edb-as--pgpool-extensions +sudo apt-get -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx index b95be9c7bb1..aaeead32334 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx @@ -34,7 +34,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo dnf -y install edb-as--pgpool-extensions +sudo dnf -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx index be65b643716..12a7a935b66 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx @@ -32,7 +32,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo yum -y install edb-as--pgpool-extensions +sudo yum -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx index 83678a6bc33..de2c49724c6 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx @@ -34,7 +34,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo dnf -y install edb-as--pgpool-extensions +sudo dnf -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx index 25902977e0d..2456165028c 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx @@ -35,7 +35,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo zypper -n install edb-as--pgpool-extensions +sudo zypper -n install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx index d8b3e094bc3..0c08025f369 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx @@ -34,7 +34,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo zypper -n install edb-as--pgpool-extensions +sudo zypper -n install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx index edfa8e1ceb6..972a12637fc 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx @@ -24,7 +24,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo apt-get -y install edb-as--pgpool-extensions +sudo apt-get -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. diff --git a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx index b6415e6ba08..89e39f94dc4 100644 --- a/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx +++ b/product_docs/docs/pgpool/4.3/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx @@ -24,7 +24,7 @@ Before you begin the installation process: ## Install the package ```shell -sudo apt-get -y install edb-as--pgpool-extensions +sudo apt-get -y install edb-as-pgpool-extensions ``` -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`. +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-as14-pgpool43-extensions`. From 2771cbd083b358765a62d3602f376c00abe2fa88 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 16 Jan 2023 10:37:20 -0500 Subject: [PATCH 08/10] removing codeready-builder instructions for EPRS --- .../docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx | 3 --- .../docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx | 3 --- 2 files changed, 6 deletions(-) diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx index e553758bb3b..f0958b272d6 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx @@ -39,9 +39,6 @@ Before you begin the installation process: # Refresh the cache: sudo dnf makecache - # Enable additional repositories to resolve dependencies: - ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - # Disable the built-in PostgreSQL module: sudo dnf -qy module disable postgresql ``` diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx index ac06659b17a..0a667925c59 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx @@ -37,9 +37,6 @@ Before you begin the installation process: # Install the EPEL repository: sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm - # Enable additional repositories to resolve dependencies: - ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - # Disable the built-in PostgreSQL module: sudo dnf -qy module disable postgresql ``` From 97b45284d9337439d526c0c1c4e3b4ad721b7307 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 16 Jan 2023 15:27:36 -0500 Subject: [PATCH 09/10] BigAnimal: Terraform updates --- .../biganimal/release/using_cluster/01_postgres_access.mdx | 4 ++++ .../biganimal/release/using_cluster/terraform_provider.mdx | 6 +----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx b/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx index c6e0a812947..a04c4ad8e4e 100644 --- a/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx @@ -114,3 +114,7 @@ If IAM integration is configured for your cluster, you can log in to Postgres us 1. Connect to Postgres using your IAM credentials. 1. When prompted for the password, enter your access key (<access key ID>:<secret access key>). +### See also + +For information on integrating with IAM using the CLI, see [Using IAM authentication on AWS](/biganimal/latest/reference/cli/using_features/#using-iam-authentication-on-aws) using the CLI. + diff --git a/product_docs/docs/biganimal/release/using_cluster/terraform_provider.mdx b/product_docs/docs/biganimal/release/using_cluster/terraform_provider.mdx index 49bf133dd8f..19fddf4f9da 100644 --- a/product_docs/docs/biganimal/release/using_cluster/terraform_provider.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/terraform_provider.mdx @@ -26,7 +26,7 @@ To use Terraform with BigAnimal, you need: # Configure the BigAnimal Provider provider "biganimal" { ba_bearer_token = "" - //ba_api_uri = "https://portal.biganimal.com/api/v2" // Optional + //ba_api_uri = "https://portal.biganimal.com/api/v3" // Optional } # Manage the resources ``` @@ -63,7 +63,3 @@ Optionally, credentials can also be provided by using the `BA_API_URI` environme Rather than export the token as described in this step, you can use the token to set the value of the `ba_bearer_token` when configuring the BigAnimal provider, as shown in [Example usage](#example-usage). 1. Now you can follow along with the [examples](https://github.com/EnterpriseDB/terraform-provider-biganimal/blob/main/examples/README.md) in the Terraform repository. - -## See also - -- [Using IAM authentication on AWS](/biganimal/latest/reference/cli/using_features/#using-iam-authentication-on-aws) using the CLI \ No newline at end of file From cf1927668e0e3e7542220a91e7bd87149ca47809 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 16 Jan 2023 16:51:15 -0500 Subject: [PATCH 10/10] tweaked wording in the See also section --- .../docs/biganimal/release/using_cluster/01_postgres_access.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx b/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx index a04c4ad8e4e..2787687b1b2 100644 --- a/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx +++ b/product_docs/docs/biganimal/release/using_cluster/01_postgres_access.mdx @@ -116,5 +116,5 @@ If IAM integration is configured for your cluster, you can log in to Postgres us ### See also -For information on integrating with IAM using the CLI, see [Using IAM authentication on AWS](/biganimal/latest/reference/cli/using_features/#using-iam-authentication-on-aws) using the CLI. +For information on integrating with IAM using the CLI, see the [Using IAM authentication on AWS](/biganimal/latest/reference/cli/using_features/#using-iam-authentication-on-aws) section in the [Using BigAnimal features with the CLI](/biganimal/latest/reference/cli/using_features) topic.