From d199532c67ec4cbc4502ab99fc5dd8c8e51f1519 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Mon, 20 May 2024 11:53:24 +0900 Subject: [PATCH 1/6] PGD: improve documentation of bdr.stat_[relation|subscription] catalogue relations For the catalogue relations "bdr.stat_relation" and "bdr.stat_subscription", make it clear which GUCs enable/disable tracking, and also note the respective statistics reset functions. Also add missing "stats_reset" column on "bdr.stat_relation" for PGD 5. BDR-5031. --- product_docs/docs/pgd/4/bdr/catalogs.mdx | 18 ++++-- product_docs/docs/pgd/4/bdr/configuration.mdx | 9 ++- .../docs/pgd/5/reference/catalogs-visible.mdx | 56 +++++++++++-------- .../docs/pgd/5/reference/pgd-settings.mdx | 12 +++- 4 files changed, 63 insertions(+), 32 deletions(-) diff --git a/product_docs/docs/pgd/4/bdr/catalogs.mdx b/product_docs/docs/pgd/4/bdr/catalogs.mdx index 54d88263857..a025358871a 100644 --- a/product_docs/docs/pgd/4/bdr/catalogs.mdx +++ b/product_docs/docs/pgd/4/bdr/catalogs.mdx @@ -786,8 +786,15 @@ is set correctly when the wait relates to BDR. ### `bdr.stat_relation` -Apply statistics for each relation. Contains data only if the tracking -is enabled and something was replicated for a given relation. +Shows apply statistics for each relation. Contains data only if tracking is enabled via +[`bdr.track_relation_apply`](/pgd/4/bdr/configuration.mdx#bdrtrack_relation_apply), +and if data was replicated for a given relation. + +`lock_acquire_time` is only updated if [`bdr.track_apply_lock_timing`](/pgd/4/bdr/configuration.mdx#bdrtrack_apply_lock_timing) +is set to `on` (default: `off`). + +The stored relation statistics can be reset by calling +[`bdr.reset_relation_stats()`](/pgd/4/bdr/functions.mdx#bdrreset_relation_stats). #### `bdr.stat_relation` columns @@ -811,8 +818,11 @@ is enabled and something was replicated for a given relation. ### `bdr.stat_subscription` -Apply statistics for each subscription. Contains data only if the tracking -is enabled. +Shows apply statistics for each subscription. Contains data only if tracking is enabled via +[`bdr.track_subscription_apply`](/pgd/4/bdr/configuration.mdx#bdrtrack_subscription_apply). + +The stored subscription statistics can be reset by calling +[`bdr.reset_subscription_stats()`](/pgd/4/bdr/functions.mdx#bdrreset_subscripion_stats). #### `bdr.stat_subscription` columns diff --git a/product_docs/docs/pgd/4/bdr/configuration.mdx b/product_docs/docs/pgd/4/bdr/configuration.mdx index 71abe10c67b..8b235b29282 100644 --- a/product_docs/docs/pgd/4/bdr/configuration.mdx +++ b/product_docs/docs/pgd/4/bdr/configuration.mdx @@ -488,11 +488,14 @@ and receivers don't have a writer ID. archival, and rotation to prevent disk space exhaustion. - `bdr.track_subscription_apply` — Track apply statistics for - each subscription. + each subscription via [`bdr.stat_subscription`](/pgd/4/bdr/catalogs.mdx#bdrstat_subscription). + The default value is `on`. - `bdr.track_relation_apply` — Track apply statistics for each - relation. + relation via [`bdr.stat_relation`](/pgd/4/bdr/catalogs.mdx#bdrstat_relation). + The default value is `off`. - `bdr.track_apply_lock_timing` — Track lock timing when tracking - statistics for relations. + statistics for relations via [`bdr.stat_relation`](/pgd/4/bdr/catalogs.mdx#bdrstat_relation). + The default value is `off`. ### Internals diff --git a/product_docs/docs/pgd/5/reference/catalogs-visible.mdx b/product_docs/docs/pgd/5/reference/catalogs-visible.mdx index 7c2376533c4..bcc25b7d313 100644 --- a/product_docs/docs/pgd/5/reference/catalogs-visible.mdx +++ b/product_docs/docs/pgd/5/reference/catalogs-visible.mdx @@ -857,33 +857,45 @@ is set correctly when the wait relates to PGD. ### `bdr.stat_relation` -Apply statistics for each relation. Contains data only if the tracking -is enabled and something was replicated for a given relation. +Shows apply statistics for each relation. Contains data only if tracking is enabled via +[`bdr.track_relation_apply`](/pgd/5/reference/pgd-settings.mdx#bdrtrack_relation_apply) +and if data was replicated for a given relation. + +`lock_acquire_time` is only updated if [`bdr.track_apply_lock_timing`](/pgd/5/reference/pgd-settings.mdx#bdrtrack_apply_lock_timing) +is set to `on` (default: `off`). + +The stored relation statistics can be reset by calling +[`bdr.reset_relation_stats()`](/pgd/5/reference/functions-internal.mdx#bdrreset_relation_stats). #### `bdr.stat_relation` columns -| Column | Type | Description | -| ------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| nspname | name | Name of the relation's schema | -| relname | name | Name of the relation | -| relid | oid | OID of the relation | -| total_time | double precision | Total time spent processing replication for the relation | -| ninsert | bigint | Number of inserts replicated for the relation | -| nupdate | bigint | Number of updates replicated for the relation | -| ndelete | bigint | Number of deletes replicated for the relation | -| ntruncate | bigint | Number of truncates replicated for the relation | -| shared_blks_hit | bigint | Total number of shared block cache hits for the relation | -| shared_blks_read | bigint | Total number of shared blocks read for the relation | -| shared_blks_dirtied | bigint | Total number of shared blocks dirtied for the relation | -| shared_blks_written | bigint | Total number of shared blocks written for the relation | -| blk_read_time | double precision | Total time spent reading blocks for the relation, in milliseconds (if `track_io_timing` is enabled, otherwise zero) | -| blk_write_time | double precision | Total time spent writing blocks for the relation, in milliseconds (if `track_io_timing` is enabled, otherwise zero) | -| lock_acquire_time | double precision | Total time spent acquiring locks on the relation, in milliseconds (if `bdr.track_apply_lock_timing` is enabled, otherwise zero) | +| Column | Type | Description | +| ------------------- | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | +| nspname | name | Name of the relation's schema | +| relname | name | Name of the relation | +| relid | oid | OID of the relation | +| total_time | double precision | Total time spent processing replication for the relation | +| ninsert | bigint | Number of inserts replicated for the relation | +| nupdate | bigint | Number of updates replicated for the relation | +| ndelete | bigint | Number of deletes replicated for the relation | +| ntruncate | bigint | Number of truncates replicated for the relation | +| shared_blks_hit | bigint | Total number of shared block cache hits for the relation | +| shared_blks_read | bigint | Total number of shared blocks read for the relation | +| shared_blks_dirtied | bigint | Total number of shared blocks dirtied for the relation | +| shared_blks_written | bigint | Total number of shared blocks written for the relation | +| blk_read_time | double precision | Total time spent reading blocks for the relation, in milliseconds (if `track_io_timing` is enabled, otherwise zero) | +| blk_write_time | double precision | Total time spent writing blocks for the relation, in milliseconds (if `track_io_timing` is enabled, otherwise zero) | +| lock_acquire_time | double precision | Total time spent acquiring locks on the relation, in milliseconds (if `bdr.track_apply_lock_timing` is enabled, otherwise zero) | +| stats_reset | timestamp with time zone | Time of the last statistics reset (performed by `bdr.reset_relation_stats()`) | + ### `bdr.stat_subscription` -Apply statistics for each subscription. Contains data only if the tracking -is enabled. +Shows apply statistics for each subscription. Contains data only if tracking is enabled via +[`bdr.track_subscription_apply`](/pgd/5/reference/pgd-settings.mdx#bdrtrack_subscription_apply). + +The stored subscription statistics can be reset by calling +[`bdr.reset_subscription_stats()`](/pgd/5/reference/functions-internal.mdx#bdrreset_subscription_stats). #### `bdr.stat_subscription` columns @@ -935,7 +947,7 @@ is enabled. | nprovisional_waits | bigint | Number of update/delete operations on same tuples by concurrent apply transactions. These are provisional waits. See [Parallel Apply](../parallelapply) | | ntuple_waits | bigint | Number of update/delete operations that waited to be safely applied. See [Parallel Apply](../parallelapply) | | ncommit_waits | bigint | Number of fully applied transactions that had to wait before being committed. See [Parallel Apply](../parallelapply) | -| stats_reset | timestamp with time zone | Time when these subscription statistics were reset | +| stats_reset | timestamp with time zone | Time of the last statistics reset (performed by `bdr.reset_subscription_stats()`) | ### `bdr.subscription` diff --git a/product_docs/docs/pgd/5/reference/pgd-settings.mdx b/product_docs/docs/pgd/5/reference/pgd-settings.mdx index 59853ac25d2..c48094790db 100644 --- a/product_docs/docs/pgd/5/reference/pgd-settings.mdx +++ b/product_docs/docs/pgd/5/reference/pgd-settings.mdx @@ -472,15 +472,21 @@ archival, and rotation to prevent disk space exhaustion. ### `bdr.track_subscription_apply` -Track apply statistics for each subscription. +Track apply statistics for each subscription via [`bdr.stat_subscription`](/pgd/5/reference/catalogs-visible.mdx#bdrstat_subscription). + +The default value is `on`. ### `bdr.track_relation_apply` -Track apply statistics for each relation. +Track apply statistics for each relation via [`bdr.stat_relation`](/pgd/5/reference/catalogs-visible.mdx#bdrstat_relation). + +The default value is `off`. ### `bdr.track_apply_lock_timing` -Track lock timing when tracking statistics for relations. +Track lock timing when tracking statistics for relations via [`bdr.stat_relation`](/pgd/5/reference/catalogs-visible.mdx#bdrstat_relation). + +The default value is `off`. ## Decoding Worker From f2394a396e76fd580b4561aa475293e2e4ad959e Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Sun, 19 May 2024 20:16:34 -0700 Subject: [PATCH 2/6] Fix error when running presetup without npm token --- icons-pkg/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/icons-pkg/package.json b/icons-pkg/package.json index cc84755b4ee..5ca89bc393d 100644 --- a/icons-pkg/package.json +++ b/icons-pkg/package.json @@ -80,7 +80,6 @@ "react-dom": "^18.2.0" }, "dependencies": { - "@enterprisedb/icons": "link:", "prop-types": "^15.8.1" }, "files": [ From 099df6ad4539b2360df665f210471f566fba7e89 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:19:27 -0500 Subject: [PATCH 3/6] Corrections to install templates --- .../templates/products/edb-postgres-advanced-server/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-postgres-advanced-server/base.njk b/install_template/templates/products/edb-postgres-advanced-server/base.njk index d2bffc72594..6afe01de86b 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/base.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -77,7 +77,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql ({{ product.version }}.x.x, server {{ product.version }}.x.x) +psql ({{ product.version }}.0.0, server {{ product.version }}.0.0) You are now connected to database "hr" as user "enterprisedb". ``` From 297ac6d33b4e630edfe22d4f9ed125ffddf741fe Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:52:49 -0500 Subject: [PATCH 4/6] Adjusted redirect in JDBC so it continues to point to version 42.5.4.1 It doesn't make any sense to redirect from the current release because those topics never existed in the current release --- install_template/templates/products/edb-jdbc-connector/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-jdbc-connector/base.njk b/install_template/templates/products/edb-jdbc-connector/base.njk index d49723339eb..1915346a8fc 100644 --- a/install_template/templates/products/edb-jdbc-connector/base.njk +++ b/install_template/templates/products/edb-jdbc-connector/base.njk @@ -10,7 +10,7 @@ #} deployPath: jdbc_connector/{{ product.version }}/installing/linux_{{platform.arch}}/jdbc_{{deploy.map_platform[platform.name]}}.mdx redirects: - - jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/{{deploy.expand_arch[platform.arch]}}/jdbc42_{{deploy.map_platform_old[platform.name]}}_{{platform.arch | replace(r/_?64/g, "")}}.mdx + - jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/{{deploy.expand_arch[platform.arch]}}/jdbc42_{{deploy.map_platform_old[platform.name]}}_{{platform.arch | replace(r/_?64/g, "")}}.mdx {% endblock frontmatter %} From 99e76cf836dce0931e506c4da2ddceec27289a85 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Mon, 20 May 2024 13:20:30 +0530 Subject: [PATCH 5/6] deployed the generated install files --- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/16/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../42.5.4.2/installing/linux_ppc64le/jdbc_rhel_8.mdx | 2 +- .../42.5.4.2/installing/linux_ppc64le/jdbc_rhel_9.mdx | 2 +- .../42.5.4.2/installing/linux_ppc64le/jdbc_sles_12.mdx | 2 +- .../42.5.4.2/installing/linux_ppc64le/jdbc_sles_15.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_centos_7.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_debian_10.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_debian_11.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_other_linux_8.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_other_linux_9.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_rhel_7.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_rhel_8.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_rhel_9.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_sles_12.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_sles_15.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_20.mdx | 2 +- .../42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_22.mdx | 2 +- 118 files changed, 118 insertions(+), 118 deletions(-) diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx index dddefb12000..075922a0300 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx index 3f147ac47cc..7a5593c9dc1 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx index 41ea3f8da46..bbabff65e34 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx index 4b8ef81b1e2..09b008e8882 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx index d3fda660c72..1e7d18b522a 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx index a7548b999c3..a061300849f 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx index c9654fb532e..266524c6b26 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx index d00273e4cf1..4e37db48dc7 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx index da3d10c6b93..88d9444c8c8 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx index 5d3ade34fdd..05f5953e152 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx index d8b6b5f1d5d..14e4671b6b0 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx index 90722fc694b..a35599ddfac 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx index be261fa3dc3..4b2a0fda372 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx index 5198a41a00a..fe09c100fd5 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx index a1e05d80551..ff0f0e9a040 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx index ca053aafde2..9d6d0a604c3 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx index cde5130617a..ff0f358dd0d 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (11.x.x, server 11.x.x) +psql (11.0.0, server 11.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx index 8d093fba424..107e46928ae 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx index 548c244602a..0010ab9236c 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx index 58c830c02f6..fda10633b0c 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx index 31e7d05e069..9476c1dd5a2 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx index fff492ad971..ebf1923ea03 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx index 2b5f9fddf3f..3ce3a2afaee 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx index acade054cd7..59a6bdc76f2 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx index ec140ead301..df61513501e 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx index e9373566532..ae35d7c7550 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx index e2bdb2c6606..f0649c414ec 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx index 8b94efa6651..a143b6ca6c9 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx index e1829224d25..83625c3a886 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx index 78aee74fd00..161da8d3f70 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx index 2df603d51e8..1297c547a24 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx index 1d6336a99e7..e6f35a0eff7 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx index c3b32ebf18c..0c5a0e7acca 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx index eea4aee9efa..398c47497e1 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (12.x.x, server 12.x.x) +psql (12.0.0, server 12.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx index 0d40d3d99de..24185ec8231 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx index 97affdf4cf7..822bc595169 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx index 0de1d3462fa..7c9316c3518 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx index fbf6a3e7cac..b99182814c6 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx index e4d28794cbe..af85d987127 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx index 191fbf25110..3e880ffb8f1 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx index c287537633a..a7353cac88c 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx index c96d96e4c2a..c1a4a38f635 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx index 14a8efe3bc6..4a9de692cc5 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx index 833131984fc..8c4e147116c 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx index 40e43ba77c9..ebcf9046343 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx index 779a4d78325..1b678ac8458 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx index 541e38f154e..8206774534f 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx index aa09ac8426d..99ce0bf1248 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx index efb3dc5a6dc..1fdceabcd7b 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx index 31bbb085731..2236d010cd2 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx index b27715fe55c..a5a62e41266 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (13.x.x, server 13.x.x) +psql (13.0.0, server 13.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx index 1021d6f2add..489cc668de5 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx index f869df320ee..eb347ba4af9 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx index 2df747219ab..4c0336a162e 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx index 808fa42f5e2..ed9d182000d 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx index 6d5216c1621..a1fddf9ff67 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx index 88bbd4f5168..c322a018b1f 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx index 91f90af34f6..6c8af33e087 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx index aa0a9e902fb..157d57b1c71 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx index 5296a3291ea..3c636980360 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx index 81f5e4692c6..83d67097293 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx index 2d31ca8d973..7e91b155c2b 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx index a3bcc823992..b5114902f44 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx index c682159d8fe..7b98c9ecde1 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx index fe124a5d8e2..612bd5dabb1 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx index ea3b57563e3..e05a12991a4 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx index fb7d31a9199..43bad223063 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx index b19e81b34e3..8722d913a27 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (14.x.x, server 14.x.x) +psql (14.0.0, server 14.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx index 21f6279296c..1e8115b03cb 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx index d59a45a6d1f..b6f297c037c 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx index 3baa2bca608..1bee8706d33 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx index 676f91ea05f..6ae29f774d5 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx index 6135c2005c3..83f0f02ab60 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx index 09ef1fe3435..e7731bf035e 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx index cdf8e2172b8..c1368714c53 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx index 3b4fe4e1300..ca7cf8580cc 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx index c25a49ba3d5..090eafc6c16 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx index ca0e985dff2..84c222f8d7e 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx index 2df562511a7..03fe2095e80 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx index 04b72613f07..586872b7c15 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx index b3937bed5ea..befe179266c 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx index 7e50f461142..314e526663e 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx index 317b5acd372..4e4c71723fa 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx index 4b896cf5b6a..211ef6e1821 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx index 0cdc94ea0b7..07765cab13e 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (15.x.x, server 15.x.x) +psql (15.0.0, server 15.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_7.mdx index 2f5c74bd637..fa9410e6873 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_7.mdx @@ -110,7 +110,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx index 778901eac09..20a0de22043 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_8.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx index 94219e58465..425f706c128 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_rhel_9.mdx @@ -117,7 +117,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx index 508d2474e45..dc74ddfd3f4 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx index de7f80ee995..a35630cff46 100644 --- a/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/16/installing/linux_ppc64le/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_centos_7.mdx index 5382daf8b7d..c13ae1c14a9 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_centos_7.mdx @@ -102,7 +102,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_10.mdx index 968879b85a8..4b4c7ec15da 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_10.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx index f53bad2eaae..8ed5ca43fb4 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_debian_11.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx index 4050edc75b9..b4188e691f1 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_8.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx index d305f3d1eb9..b53eb262949 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_other_linux_9.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_7.mdx index 1491d5e1c3b..6b8b8347f9a 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_7.mdx @@ -108,7 +108,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx index 36508b4dfaf..5bb32697fc4 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_8.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx index 4e5e4bcbdb6..0f5c05bb931 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_rhel_9.mdx @@ -115,7 +115,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx index 39c645496b1..d1ea27afc13 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_12.mdx @@ -106,7 +106,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx index 1ef98b66e2d..bb314b369f6 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_sles_15.mdx @@ -107,7 +107,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx index 0c13cfd8b91..0c98d1e95a8 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx index 3f1f829549f..9190e710e6f 100644 --- a/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/16/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -87,7 +87,7 @@ Connect to the `hr` database inside psql: ``` \c hr __OUTPUT__ -psql (16.x.x, server 16.x.x) +psql (16.0.0, server 16.0.0) You are now connected to database "hr" as user "enterprisedb". ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_8.mdx index 78472d0ecc8..6198c2fdd49 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_8.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on RHEL 8 ppc64le # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_rhel8_ppcle + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_rhel8_ppcle --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_9.mdx index f4157a601e4..3c56972f580 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_rhel_9.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on RHEL 9 ppc64le # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_rhel9_ppcle + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_rhel9_ppcle --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_12.mdx index 3619cd765aa..b8960c14d72 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_12.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on SLES 12 ppc64le # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_sles12_ppcle + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_sles12_ppcle --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_15.mdx index e0d82e38d97..b33d4cf3d42 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_ppc64le/jdbc_sles_15.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on SLES 15 ppc64le # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_sles15_ppcle + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/ibm_power_ppc64le/jdbc42_sles15_ppcle --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_centos_7.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_centos_7.mdx index 708d284f595..e23c85562cb 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_centos_7.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_centos_7.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on CentOS 7 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_centos7_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_centos7_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_10.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_10.mdx index 0f0ff6cd8a1..d3a4030e635 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_10.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_10.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on Debian 10 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_deb10_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_deb10_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_11.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_11.mdx index f7021166ca3..62a02d0e80a 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_11.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_debian_11.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on Debian 11 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_deb11_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_deb11_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_8.mdx index adcc2cf4060..041e81b63ea 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_8.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on AlmaLinux 8 or Rocky Linux 8 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_other_linux8_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_other_linux8_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_9.mdx index 59240651d1b..39d10cd48da 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_other_linux_9.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on AlmaLinux 9 or Rocky Linux 9 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_other_linux9_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_other_linux9_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_7.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_7.mdx index 42a3238a62b..0b87a5a6f5b 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_7.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_7.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on RHEL 7 or OL 7 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel7_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel7_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_8.mdx index 85eff423c92..0bc95e8dcfb 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_8.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on RHEL 8 or OL 8 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel8_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel8_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_9.mdx index edfae871367..84f622437fe 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_rhel_9.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on RHEL 9 or OL 9 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel9_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_rhel9_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_12.mdx index e618b2726b1..0bfc62fa4f5 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_12.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on SLES 12 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_sles12_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_sles12_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_15.mdx index 0d511cf91a5..e95fcf41065 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_sles_15.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on SLES 15 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_sles15_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_sles15_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_20.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_20.mdx index ee786fb508a..f8eef9e6d49 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_20.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_20.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on Ubuntu 20.04 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_ubuntu20_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_ubuntu20_x86 --- ## Prerequisites diff --git a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_22.mdx b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_22.mdx index 50051d2b288..8a572e2ec77 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_22.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.2/installing/linux_x86_64/jdbc_ubuntu_22.mdx @@ -6,7 +6,7 @@ title: Installing EDB JDBC Connector on Ubuntu 22.04 x86_64 # the documentation team will update the templates accordingly. redirects: - - /jdbc_connector/latest/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_ubuntu22_x86 + - /jdbc_connector/42.5.4.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/x86_amd64/jdbc42_ubuntu22_x86 --- ## Prerequisites From 78eb8c3202cbc0741218936d3eaf83c08f736fdc Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Mon, 20 May 2024 15:05:29 +0100 Subject: [PATCH 6/6] Removed dupe redirect from linux.mdx --- product_docs/docs/pgd/5/cli/installing/linux.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/product_docs/docs/pgd/5/cli/installing/linux.mdx b/product_docs/docs/pgd/5/cli/installing/linux.mdx index 06cce93ff8d..83b75a91d59 100644 --- a/product_docs/docs/pgd/5/cli/installing/linux.mdx +++ b/product_docs/docs/pgd/5/cli/installing/linux.mdx @@ -2,8 +2,6 @@ title: Installing PGD CLI on Linux navTitle: Linux description: Installing PGD CLI on Linux -redirects: - - /pgd/latest/cli/installing_cli/ #generated for pgd deploy-config-planning reorg --- PGD CLI is available for most Linux distributions. You can install it from the EDB repositories, which you can access with your EDB account. PGD users and BigAnimal users, including those on a free trial, have an EDB account and access to PGD CLI.