From ea32009709fd4bdf6494f502d284f1da97a51b27 Mon Sep 17 00:00:00 2001 From: Alina Derkach Date: Fri, 31 Jul 2026 18:35:40 +0200 Subject: [PATCH] PXC-5301 [DOCS] Update doc files for 8.4 version modified: docs/install-index.md modified: docs/upgrade-backup.md modified: docs/upgrade-packages.md modified: docs/yum.md --- docs/install-index.md | 11 ----------- docs/upgrade-backup.md | 2 +- docs/upgrade-packages.md | 8 ++++---- docs/yum.md | 6 +++--- 4 files changed, 8 insertions(+), 19 deletions(-) diff --git a/docs/install-index.md b/docs/install-index.md index 9f35a095..cc7d51cc 100644 --- a/docs/install-index.md +++ b/docs/install-index.md @@ -32,15 +32,4 @@ If you want to build Percona XtraDB Cluster from source, see [Compiling and Inst If you want to run Percona XtraDB Cluster using Docker, see [Run in a Docker container](docker.md). -## Product version numbering - -The version number in PXC releases contains the following components: - -* The version of Percona Server for MySQL that the given PXC release is based on - -* The sequence number which represents the PXC built. - -For example, version number *8.0.18-9.3* means that this is the third PXC -build based on Percona Server for MySQL 8.0.18-9. - [Telemetry data]: telemetry.md diff --git a/docs/upgrade-backup.md b/docs/upgrade-backup.md index e8cdfc06..0d07fd4e 100644 --- a/docs/upgrade-backup.md +++ b/docs/upgrade-backup.md @@ -33,5 +33,5 @@ To create the 2nd and subsequent nodes, follow these steps: 2. Join the cluster using State Snapshot Transfer (SST). -Starting from version 8.0.34, this procedure can also be used to downgrade within the same LTS version. +This procedure can also be used to downgrade within the same LTS version. diff --git a/docs/upgrade-packages.md b/docs/upgrade-packages.md index 26b47ff1..1810823a 100644 --- a/docs/upgrade-packages.md +++ b/docs/upgrade-packages.md @@ -21,10 +21,10 @@ Make a full backup (or dump if possible) of your database. Move the database con The following example downloads Percona Server for MySQL {{release}} packages for Debian 11.0: ```shell - wget https://downloads.percona.com/downloads/Percona-Server-innovative-release/Percona-Server-{{release}}/binary/debian/bullseye/x86_64/Percona-Server-{{release}}-r582ebeef-bullseye-x86_64-bundle.tar + wget https://downloads.percona.com/downloads/Percona-Server-{{vers}}/Percona-Server-{{release}}/binary/debian/bullseye/x86_64/Percona-Server-{{release}}-rd76e81f4-bullseye-x86_64-bundle.tar ``` - 4. Unpack the bundle to get the packages: `tar xvf Percona-Server-{{release}}-x86_64-bundle.tar`. + 4. Unpack the bundle to get the packages: `tar xvf Percona-Server-{{release}}-rd76e81f4-bullseye-x86_64-bundle.tar`. After you unpack the bundle, you should see the following packages: @@ -107,13 +107,13 @@ Make a full backup (or dump if possible) of your database. Move the database con 3. Download the packages of the desired series for your architecture from the [Percona Software Downloads :octicons-link-external-16:](https://www.percona.com/downloads). The easiest way is to download the bundle which contains all the packages. The following example downloads Percona Server for MySQL {{release}} packages for CentOS 9: ```shell - wget https://downloads.percona.com/downloads/Percona-Server-innovative-release/Percona-Server-{{release}}/binary/redhat/9/x86_64/Percona-Server-{{release}}-r582ebeef-el9-x86_64-bundle.tar + wget https://downloads.percona.com/downloads/Percona-Server-{{vers}}/Percona-Server-{{release}}/binary/redhat/9/x86_64/Percona-Server-{{release}}-rd76e81f4-el9-x86_64-bundle.tar ``` 4. Unpack the bundle to get the packages ```shell - tar xvf Percona-Server-{{release}}-r582ebeef-el9-x86_64-bundle.tar + tar xvf Percona-Server-{{release}}-rd76e81f4-el9-x86_64-bundle.tar ``` After you unpack the bundle, you should see the following packages: `ls \*.rpm` diff --git a/docs/yum.md b/docs/yum.md index 0206a1e0..3f97b89e 100644 --- a/docs/yum.md +++ b/docs/yum.md @@ -11,7 +11,7 @@ You can install Percona XtraDB Cluster with the following methods: * Use the official repository using YUM -* Download and manually install the Percona XtraDB Cluster packages from [Percona Software Downloads :octicons-link-external-16:](http://www.percona.com/downloads/Percona-XtraDB-Cluster-80/LATEST/). +* Download and manually install the Percona XtraDB Cluster packages from [Percona Software Downloads :octicons-link-external-16:](https://www.percona.com/downloads/). * Use the Percona Software repositories @@ -47,7 +47,7 @@ sudo yum module disable mysql ```shell sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm -sudo percona-release setup pxc-84-lts +sudo percona-release setup {{pkg}} sudo yum install percona-xtradb-cluster ``` @@ -86,7 +86,7 @@ Next, install the Percona repository and the cluster. ```shell sudo dnf install https://repo.percona.com/yum/percona-release-latest.noarch.rpm -sudo percona-release setup pxc-84-lts +sudo percona-release setup {{pkg}} sudo dnf install percona-xtradb-cluster ```