Skip to content

Commit 9196621

Browse files
authoredDec 31, 2024··
Merge pull request #435 from percona/ps-9592
PS-9592 [DOCS] - Update yum-repo with mysql limitation 8.4
2 parents e0026cf + 0d1d301 commit 9196621

File tree

4 files changed

+14
-15
lines changed

4 files changed

+14
-15
lines changed
 

‎docs/apt-repo.md

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ The DEB builds for Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04, DEBIAN 11, and DEBI
1313

1414
## Install Percona Server for MySQL using APT
1515

16-
--8<--- "percona-release.md"
17-
1816
To install Percona Server for MySQL using APT, do the following steps:
1917
{.power-number}
2018

‎docs/installation.md

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ We gather [Telemetry data] in the Percona packages and Docker images.
66

77
## Install Percona Server for MySQL from Repositories
88

9-
--8<--- "percona-release.md"
10-
119
Percona provides repositories for yum (`RPM` packages for Red Hat, CentOS and Amazon Linux AMI) and apt (`.deb` packages for Ubuntu and Debian) for software such as Percona Server for MySQL, Percona XtraBackup, and Percona Toolkit. This makes it easy to install and update your software and its dependencies through your operating system’s package manager. This is the recommended way of installing where possible.
1210

1311
The following guides describe the installation process for using the official Percona repositories for the `.deb` and `.rpm` packages.

‎docs/upgrade.md

-3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,3 @@ The following list summarizes a number of the changes in the 8.0 series and has
5050

5151
Review other [Percona blogs](https://www.percona.com/blog/) that contain upgrade information.
5252

53-
## Limitations
54-
55-
--8<--- "percona-release.md"

‎docs/yum-repo.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,24 @@ Percona Server for MySQL is certified for Red Hat Enterprise Linux 8. This certi
2020

2121
The RPM builds for *RHEL* 8 and *RHEL* 9 contain ARM packages with the `aarch64.rpm` extension. This means that Percona Server for MySQL is available for users on ARM-based systems.
2222

23-
## Install
23+
## Limitations
24+
25+
RHEL 8 and other EL8 systems enable the MySQL module by default. This module hides the Percona-provided packages and the module must be disabled to make these packages visible. The following command disables the module:
2426

25-
--8<--- "percona-release.md"
27+
```{.bash data-prompt="$"}
28+
$ sudo yum module disable mysql
29+
```
30+
31+
## Install
2632

2733
To install using the Percona Software repository, run the following commands either as a `root` user or, as in the example, using `sudo`.
2834

29-
```{.bash data-prompt="$"}
30-
$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
31-
$ sudo percona-release enable-only {{pkg}} release
32-
$ sudo percona-release enable tools release
33-
$ sudo yum install percona-server-server
34-
```
35+
```{.bash data-prompt="$"}
36+
$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
37+
$ sudo percona-release enable-only {{pkg}} release
38+
$ sudo percona-release enable tools release
39+
$ sudo yum install percona-server-server
40+
```
3541

3642
## Available storage engines
3743

0 commit comments

Comments
 (0)
Please sign in to comment.