Skip to content

Commit 29c9133

Browse files
PS-9124 Update PS 8.0.36 Pro builds documentation (#288)
modified: docs/binary-tarball-install.md modified: docs/binary-tarball-names.md modified: docs/downgrade-from-pro.md modified: variables.yml
1 parent 364f364 commit 29c9133

5 files changed

+26
-41
lines changed

docs/binary-tarball-install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ You can download the required binary tarball for Percona Server for MySQL Pro us
1919
Fetch and extract the correct binary tarball using your `CLIENTID` and `TOKEN`. For example, for Oracle Linux 9:
2020

2121
```{.bash data-prompt="$"}
22-
wget https://repo.percona.com/private/[CLIENTID]-[TOKEN]/ps-80-pro/tarballs/Percona-Server-8.0.35-27/Percona-Server-Pro-8.0.35-27-Linux.x86_64.glibc2.34-debug.tar.gz
22+
wget https://repo.percona.com/private/[CLIENTID]-[TOKEN]/ps-80-pro/tarballs/Percona-Server-{{pro_release}}/Percona-Server-Pro-{{pro_release}}-Linux.x86_64.glibc2.34-debug.tar.gz
2323
```

docs/binary-tarball-names.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ If the `glibc2` version from your operating system is not listed, then this Perc
4949

5050
| Platform | Percona Server for MySQL Pro tarball name | glibc2 version |
5151
|----------------------|--------------------------------------------------------------------|----------------|
52-
| Ubuntu 22.04 | Percona-Server-Pro-8.0.35-27-Linux.x86_64.glibc2.35.tar.gz | glibc2.35 |
53-
| Ubuntu 22.04 | Percona-Server-Pro-8.0.35-27-Linux.x86_64.glibc2.35-minimal.tar.gz | glibc2.35 |
54-
| Red Hat Enterprise 9 | Percona-Server-Pro-8.0.35-27-Linux.x86_64.glibc2.34.tar.gz | glibc2.34 |
55-
| Red Hat Enterprise 9 | Percona-Server-Pro-8.0.35-27-Linux.x86_64.glibc2.34-minimal.tar.gz | glibc2.34 |
52+
| Ubuntu 22.04 | Percona-Server-Pro-{{pro_release}}-Linux.x86_64.glibc2.35.tar.gz | glibc2.35 |
53+
| Ubuntu 22.04 | Percona-Server-Pro-{{pro_release}}-Linux.x86_64.glibc2.35-minimal.tar.gz | glibc2.35 |
54+
| Red Hat Enterprise 9 | Percona-Server-Pro-{{pro_release}}-Linux.x86_64.glibc2.34.tar.gz | glibc2.34 |
55+
| Red Hat Enterprise 9 | Percona-Server-Pro-{{pro_release}}-Linux.x86_64.glibc2.34-minimal.tar.gz | glibc2.34 |
5656

5757
The types of files are the following:
5858

docs/downgrade-from-pro.md

+17-33
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you want to downgrade from Percona Server for MySQL Pro to the same version o
44

55
!!! note
66

7-
For Ubuntu 22.04 the downgrade from percona-mysql-router-pro to percona-mysql-router will be implemented in future releases.
7+
In Percona Server for MySQL Pro 8.0.35-27, the downgrade from percona-mysql-router-pro to percona-mysql-router is not supported for Ubuntu 22.04.
88

99
=== "On Debian and Ubuntu"
1010

@@ -14,7 +14,7 @@ If you want to downgrade from Percona Server for MySQL Pro to the same version o
1414
$ sudo percona-release setup ps80
1515
```
1616

17-
2. Stop the `mysql` server
17+
2. Stop the `mysql` server.
1818
1919
```{.bash data-prompt="$"}
2020
$ sudo systemctl stop mysql
@@ -26,24 +26,21 @@ If you want to downgrade from Percona Server for MySQL Pro to the same version o
2626
$ sudo apt install percona-server-server
2727
```
2828

29-
Install other required packages. [Check files in the DEB package built for Percona Server for MySQL 8.0](apt-files.md).
29+
Install other required packages. [Check files in the DEB package built for Percona Server for MySQL 8.0](apt-files.md).
3030

31-
4. Stop the `mysql` server again.
32-
33-
```{.bash data-prompt="$"}
34-
$ sudo systemctl stop mysql
35-
```
36-
37-
5. Create an alternative symbolic link for the MySQL configuration file, `my.cnf`, that points to `/etc/mysql/mysql.cnf`
31+
4. Start the `mysql` server
3832

3933
```{.bash data-prompt="$"}
40-
$ sudo update-alternatives --force --install /etc/mysql/my.cnf my.cnf "/etc/mysql/mysql.cnf" 300
34+
$ sudo systemctl start mysql
4135
```
4236

43-
6. Start the `mysql` server
37+
!!! note
4438

39+
On Debian 12, if you want to remove the Percona Server for MySQL after the downgrade, you must stop the
40+
server manually. This behavior will be fixed in future releases.
41+
4542
```{.bash data-prompt="$"}
46-
$ sudo systemctl start mysql
43+
$ sudo systemctl stop mysql
4744
```
4845

4946
=== "On RHEL and derivatives"
@@ -53,36 +50,23 @@ If you want to downgrade from Percona Server for MySQL Pro to the same version o
5350
```{.bash data-prompt="$"}
5451
$ sudo percona-release setup ps80
5552
```
56-
57-
2. Back up the `my.cnf` configuration file
58-
59-
```{.bash data-prompt="$"}
60-
$ sudo cp /etc/my.cnf /etc/my.cnf_back
61-
```
62-
63-
3. Remove the server Pro package
64-
53+
54+
2. Stop the `mysql` server.
55+
6556
```{.bash data-prompt="$"}
66-
$ sudo yum remove percona-server-server-pro
57+
$ sudo systemctl stop mysql
6758
```
6859

69-
4. Install the server package
60+
3. Install the server package
7061

7162
```{.bash data-prompt="$"}
72-
$ sudo yum install percona-server-server
63+
$ sudo yum --allowerasing install percona-server-server
7364
```
7465

7566
Install other required packages. [Check files in the RPM package built for Percona Server for MySQL 8.0](yum-files.md).
7667

77-
5. Overwrite the contents of `/etc/my.cnf` configuration file with the contents from `my.cnf_back` configuration file.
78-
79-
```{.bash data-prompt="$"}
80-
$ sudo cp /etc/my.cnf_back /etc/my.cnf
81-
```
82-
83-
6. Start the `mysql` server
68+
4. Start the `mysql` server
8469

8570
```{.bash data-prompt="$"}
8671
$ sudo systemctl start mysql
8772
```
88-

docs/psmysql-pro.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ Percona Server for MySQL Pro includes the [capabilities](#capabilities) that are
88

99
Find the list of capabilities available in Percona Server for MySQL Pro:
1010

11-
| Name | Version added | Description |
12-
| ----------------------------------- | ------------- | -------------
11+
| Name | Version | Description |
12+
| ----------------------------------- | ------------- | -------------|
1313
| [FIPS compliance](fips.md)| 8.0.35-27 | Enables all commercial cloud service providers who want to sell and expand their footprint for US government entities. |
14+
| [FIPS compliance](fips.md)| 8.0.36-28 | The FIPS feature has been tested on Percona Server for MySQL Pro 8.0.36-28. There are no other changes to this release.|
1415

1516
## What's in it for you?
1617

variables.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ release: '8.0.36-28'
44
version: '8.0'
55
release_date: '2024-03-04'
66
title_date: '2024-03-04'
7-
7+
pro_release: '8.0.36-28'

0 commit comments

Comments
 (0)