From 905953b5dacbc3d193c335db8ac3c13ed85ff8d8 Mon Sep 17 00:00:00 2001 From: Dragos Andriciuc Date: Fri, 27 Mar 2026 16:19:50 +0200 Subject: [PATCH 1/3] PG-2275 - Repository 404 errors and removed versions (17) This PR adds a new file in the troubleshooting section explaining why some versions are no longer available to download. --- docs/remove-repo-ver.md | 31 +++++++++++++++++++++++++++++++ mkdocs.yml | 4 +++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 docs/remove-repo-ver.md diff --git a/docs/remove-repo-ver.md b/docs/remove-repo-ver.md new file mode 100644 index 000000000..9f0a3531e --- /dev/null +++ b/docs/remove-repo-ver.md @@ -0,0 +1,31 @@ +# Removed repository versions + +## Overview + +Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. The affected versions are: + +- ppg-14.19 +- ppg-15.14 +- ppg-16.10 +- ppg-17.6 + +## Reason for removal + +These versions were part of a release that included known issues affecting stability and reliability (also referred to internally as the "assertion release"). + +To prevent unintended usage, these repositories were removed from distribution. + +## What should you do instead? + +Use the latest available minor version for your PostgreSQL major version. + +Example: + +- Instead of `ppg-16.10`, use the latest `ppg-16.x` + +See [installation guide] + +## Additional context + +For more details, see the relevant release notes: +- [link to release notes] \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 07828e593..7490b371a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -71,7 +71,9 @@ nav: - minor-upgrade.md - migration.md - FAQ: faq.md - - Troubleshooting guide: troubleshooting.md + - Troubleshooting guide: + - "Overview": troubleshooting.md + - "Repository 404 errors and removed versions": remove-repo-ver.md - Uninstall: uninstalling.md - Release notes: - "Release notes index": release-notes/release-notes.md From 088c2df43a3773ffc4f86b63d5d7607c4c0d5867 Mon Sep 17 00:00:00 2001 From: Dragos Andriciuc Date: Fri, 27 Mar 2026 17:45:10 +0200 Subject: [PATCH 2/3] Update troubleshooting and remove repo files --- docs/remove-repo-ver.md | 29 +++++++++++++---------------- docs/troubleshooting.md | 8 +++++--- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/docs/remove-repo-ver.md b/docs/remove-repo-ver.md index 9f0a3531e..e2403a5dd 100644 --- a/docs/remove-repo-ver.md +++ b/docs/remove-repo-ver.md @@ -1,31 +1,28 @@ -# Removed repository versions +# Repository 404 errors and removed versions -## Overview +Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. This happens because these versions have been removed from the repository. -Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. The affected versions are: +The affected versions are: -- ppg-14.19 -- ppg-15.14 -- ppg-16.10 -- ppg-17.6 +- `ppg-14.19` +- `ppg-15.14` +- `ppg-16.10` +- `ppg-17.6` ## Reason for removal -These versions were part of a release that included known issues affecting stability and reliability (also referred to internally as the "assertion release"). +These versions were part of a release that included known issues affecting stability and reliability. To prevent unintended usage, these repositories were removed from distribution. +These versions are not recommended for production use. + ## What should you do instead? Use the latest available minor version for your PostgreSQL major version. -Example: - -- Instead of `ppg-16.10`, use the latest `ppg-16.x` - -See [installation guide] +Examples: -## Additional context +- Instead of `ppg-17.6`, use the latest `ppg-17.x` -For more details, see the relevant release notes: -- [link to release notes] \ No newline at end of file +For installation and upgrade instructions, see the [minor upgrade guide](minor-upgrade.md). diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index e2e7c1b1c..115f1ff86 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -1,16 +1,18 @@ -# Troubleshooting guide +# Troubleshooting guide overview This guide helps you identify and resolve common issues when installing, configuring, or running Percona Server for PostgreSQL 17. If you're looking for general information or usage tips, check the [FAQ](faq.md). -## Cannot create a table. Permission denied in schema `public` +## Common issues + +### Cannot create a table. Permission denied in schema `public` Every database in PostgreSQL has a default schema called `public`. A schema stores database objects like tables, views, indexes and allows organizing them into logical groups. When you create a table without specifying a schema name, it ends up in the `public` schema by default. -Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgvesrion}}/sql-grant.html) command or create your own schema to insert the data. +Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgversion}}/sql-grant.html) command or create your own schema to insert the data. To create a schema, use the following statement: From ff1ee491e0045682334b7972d89bb0479efeb4f8 Mon Sep 17 00:00:00 2001 From: Dragos Andriciuc Date: Fri, 27 Mar 2026 17:50:37 +0200 Subject: [PATCH 3/3] Update remove-repo-ver.md --- docs/remove-repo-ver.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/remove-repo-ver.md b/docs/remove-repo-ver.md index e2403a5dd..1277cec57 100644 --- a/docs/remove-repo-ver.md +++ b/docs/remove-repo-ver.md @@ -2,7 +2,7 @@ Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. This happens because these versions have been removed from the repository. -The affected versions are: +The following versions are affected: - `ppg-14.19` - `ppg-15.14` @@ -11,8 +11,6 @@ The affected versions are: ## Reason for removal -These versions were part of a release that included known issues affecting stability and reliability. - To prevent unintended usage, these repositories were removed from distribution. These versions are not recommended for production use. @@ -23,6 +21,6 @@ Use the latest available minor version for your PostgreSQL major version. Examples: -- Instead of `ppg-17.6`, use the latest `ppg-17.x` +- Replace `ppg-17.6` with the latest available `ppg-17.x` -For installation and upgrade instructions, see the [minor upgrade guide](minor-upgrade.md). +For upgrade instructions, see the [minor upgrade guide](minor-upgrade.md).