Skip to content

Commit 92ce55c

Browse files
authored
PG-2275 - Repository 404 errors and removed versions (17) (#933)
This PR adds a new file in the troubleshooting section explaining why some versions are no longer available to download.
1 parent f2613f1 commit 92ce55c

3 files changed

Lines changed: 34 additions & 4 deletions

File tree

docs/remove-repo-ver.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Repository 404 errors and removed versions
2+
3+
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.
4+
5+
The following versions are affected:
6+
7+
- `ppg-14.19`
8+
- `ppg-15.14`
9+
- `ppg-16.10`
10+
- `ppg-17.6`
11+
12+
## Reason for removal
13+
14+
To prevent unintended usage, these repositories were removed from distribution.
15+
16+
These versions are not recommended for production use.
17+
18+
## What should you do instead?
19+
20+
Use the latest available minor version for your PostgreSQL major version.
21+
22+
Examples:
23+
24+
- Replace `ppg-17.6` with the latest available `ppg-17.x`
25+
26+
For upgrade instructions, see the [minor upgrade guide](minor-upgrade.md).

docs/troubleshooting.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
# Troubleshooting guide
1+
# Troubleshooting guide overview
22

33
This guide helps you identify and resolve common issues when installing, configuring, or running Percona Server for PostgreSQL 17.
44

55
If you're looking for general information or usage tips, check the [FAQ](faq.md).
66

7-
## Cannot create a table. Permission denied in schema `public`
7+
## Common issues
8+
9+
### Cannot create a table. Permission denied in schema `public`
810

911
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.
1012

1113
When you create a table without specifying a schema name, it ends up in the `public` schema by default.
1214

13-
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.
15+
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.
1416

1517
To create a schema, use the following statement:
1618

mkdocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ nav:
7171
- minor-upgrade.md
7272
- migration.md
7373
- FAQ: faq.md
74-
- Troubleshooting guide: troubleshooting.md
74+
- Troubleshooting guide:
75+
- "Overview": troubleshooting.md
76+
- "Repository 404 errors and removed versions": remove-repo-ver.md
7577
- Uninstall: uninstalling.md
7678
- Release notes:
7779
- "Release notes index": release-notes/release-notes.md

0 commit comments

Comments
 (0)