Skip to content

Commit dbe2b2d

Browse files
Fix the url for downloading the RHEL 8 packages (#610)
Update yum-download-rpm.md
1 parent 9e7cf70 commit dbe2b2d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/yum-download-rpm.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ Starting with Percona Server 8.0.33-25, the RPM builds for *RHEL* 8 and *RHEL* 9
1414

1515
The following example downloads *Percona Server for MySQL* {{release}} release packages for *RHEL* 8.
1616

17-
1. Using [`Wget`](https://www.gnu.org/software/wget/), the following command downloads a specific version of Percona Server for MySQL on Red Hat Enterprise Linux 8 from the Percona website.
17+
1. Using [`Wget`](https://www.gnu.org/software/wget/), the following command downloads a specific version of Percona Server for MySQL on Red Hat Enterprise Linux 8 from the Percona website.
18+
19+
The download filename includes a `<revision-identifier>` value. This value is *build-specific* and must be obtained from the [Percona Product Downloads](https://www.percona.com/downloads) page for the exact release you are installing. Select the product, version, and operating system, and find the link with the required `<revision identifier>` under the **Download all packages** button. For more details, see the [Instructions for Percona Product Downloads](download-instructions.md).
1820

1921
```{.bash data-prompt="$"}
20-
$ wget https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-{{release}}/binary/redhat/8/x86_64/Percona-Server-{{release}}-re5c6e9d2-el8-x86_64-bundle.tar
22+
$ wget https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-{{release}}/binary/redhat/8/x86_64/Percona-Server-{{release}}-<revision identifier>-el8-x86_64-bundle.tar
2123
```
2224

2325
2. The following command extracts the contents of Percona Server for MySQL tarball. The `tar` command uses these options for the extraction:
@@ -29,7 +31,7 @@ The following example downloads *Percona Server for MySQL* {{release}} release p
2931
* `f` - name of the archive file
3032

3133
```{.bash data-prompt="$"}
32-
$ tar xvf Percona-Server-{{release}}-re5c6e9d2-el8-x86_64-bundle.tar
34+
$ tar xvf Percona-Server-{{release}}-<revision identifier>-el8-x86_64-bundle.tar
3335
```
3436

3537
3. The following command uses the `ls` utility to list the RPM files in the current directory. The command uses the `*.rpm` pattern. The `*` is a wildcard that matches any number of characters. The `.rpm` specifies that we only want the files that end in this extension.

0 commit comments

Comments
 (0)