Skip to content

Commit 1b42675

Browse files
authored
PS-10319 [DOCS] - remove pro topics from 8.0 (#612)
Your branch is up to date with 'origin/8.0'. renamed: docs/install-pro.md -> archive-docs/install-pro.md renamed: docs/pro-files.md -> archive-docs/pro-files.md renamed: docs/psmysql-pro.md -> archive-docs/psmysql-pro.md renamed: docs/upgrade-pro.md -> archive-docs/upgrade-pro.md modified: docs/fips.md modified: mkdocs-base.yml
1 parent f66aa38 commit 1b42675

14 files changed

+96
-76
lines changed
File renamed without changes.

archive-docs/legacy-platforms.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Legacy Platform Information - Red Hat Enterprise Linux 7
2+
3+
## Limitations
4+
5+
The RPM packages for Red Hat Enterprise Linux 7 and the compatible derivatives do not support TLSv1.3. This version requires OpenSSL 1.1.1, which is currently unavailable on this platform.
6+
7+
**Note:** Red Hat Enterprise Linux 7 reached End of Life (EOL) on June 30, 2024. This information is archived for historical reference.
8+
9+
## Install on Red Hat 7
10+
11+
The first command uses `yum` to install the Percona repository from the Percona website. The second command enables the `ps-80` release series of the Percona Server. The third command allows the `tools` repository. This repository contains additional Percona software. The fourth command installs Percona Server for MySQL.
12+
13+
```{.bash data-prompt="$"}
14+
$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
15+
$ sudo percona-release enable-only ps-80 release
16+
$ sudo percona-release enable tools release
17+
$ sudo yum install percona-server-server
18+
```
19+
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/apt-repo.md

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ Starting with [Percona Server 8.0.37-29](release-notes/8.0.37-29.md), the follow
2525

2626
## Install Percona Server for MySQL using APT
2727

28+
Run the following commands as a `root` user or with sudo:
29+
30+
```{.bash}
31+
sudo apt update
32+
sudo apt install curl
33+
curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb
34+
sudo apt install gnupg2 lsb-release ./percona-release_latest.generic_all.deb
35+
sudo apt update
36+
sudo percona-release setup ps80
37+
sudo apt install percona-server-server
38+
```
39+
40+
The following sections provide detailed explanations for each step:
41+
2842
1. This command line instruction uses the `apt` command to update the package lists for upgrades and new package installations.
2943

3044
* `sudo` is a command that allows you to run programs with the security privileges of another user, by default, as the superuser. Updating the package lists typically requires superuser or 'root' privileges.
@@ -34,50 +48,50 @@ Starting with [Percona Server 8.0.37-29](release-notes/8.0.37-29.md), the follow
3448
* `update` option resynchronizes the package index files from the sources specified in the system's `sources.list` file. You should run this command regularly to get the latest package updates.
3549

3650

37-
```{.bash data-prompt="$"}
38-
$ sudo apt update
51+
```{.bash}
52+
sudo apt update
3953
```
4054

4155
2. This command line instruction uses superuser privileges to install the `curl` package using the `apt` package manager. `curl` is a command-line tool used to transfer data using various network protocols.
4256

43-
```{.bash data-prompt="$"}
44-
$ sudo apt install curl
57+
```{.bash}
58+
sudo apt install curl
4559
```
4660

4761
3. This command line instruction uses `curl` to download the `percona-release_latest.generic_all.deb` file from the `https://repo.percona.com/apt` location.
4862

4963
The `-0` option saves the downloaded file with the same name used in the URL.
5064

51-
```{.bash data-prompt="$"}
52-
$ curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb
65+
```{.bash}
66+
curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb
5367
```
5468

5569
4. The following command uses the `apt` command to install multiple packages. `gnupg2` is the GNU Privacy Guard that provides cryptographic privacy and authentication. `lsb-release` is a Linux utility that provides certain Linux Standard Base (LSB) and distribution-specific information. `./percona-release_latest.generic_all.deb` is a Debian package in the current directory.
5670

5771

58-
```{.bash data-prompt="$"}
59-
$ sudo apt install gnupg2 lsb-release ./percona-release_latest.generic_all.deb
72+
```{.bash}
73+
sudo apt install gnupg2 lsb-release ./percona-release_latest.generic_all.deb
6074
```
6175

6276

6377
5. The following command uses superuser privileges to update the package lists from the repositories so that the system knows about the latest versions of packages and their dependencies.
6478

65-
```{.bash data-prompt="$"}
66-
$ sudo apt update
79+
```{.bash}
80+
sudo apt update
6781
```
6882

6983
6. This command line instruction uses `percona-release` command, a tool provided by Percona, to set up a specific Percona Server version.
7084

71-
```{.bash data-prompt="$"}
72-
$ sudo percona-release setup ps80
85+
```{.bash}
86+
sudo percona-release setup ps80
7387
```
7488

7589
7. You can check the repository setup for the Percona original release list in `/etc/apt/sources.list.d/percona-original-release.list`. The APT system uses this file to know where to find updates and new packages for Percona software.
7690

7791
8. This command uses the `apt` command to install the `percona-server-server` package.
7892

79-
```{.bash data-prompt="$"}
80-
$ sudo apt install percona-server-server
93+
```{.bash}
94+
sudo apt install percona-server-server
8195
```
8296

8397
See [Configuring Percona repositories with `percona-release`](https://docs.percona.com/percona-software-repositories/percona-release.html) for more information.
@@ -99,8 +113,8 @@ mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"
99113

100114
Percona offers pre-release builds from the testing repository. As a superuser, run `percona-release` with the `testing` argument to enable it.
101115

102-
```{.bash data-prompt="$"}
103-
$ sudo percona-release enable ps80 testing
116+
```{.bash}
117+
sudo percona-release enable ps80 testing
104118
```
105119

106120
Do not run testing repository builds in production. The build may not contain all the features available in the final release and may change without notice.

docs/binary-tarball-install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ Fetch and extract the correct binary tarball. For example, for Debian 10:
1212
$ wget https://downloads.percona.com/downloads/Percona-Server-8.0/Percona-Server-8.0.26-16/binary/tarball/Percona-Server-8.0.26-16-Linux.x86_64.glibc2.12.tar.gz
1313
```
1414

15-
## Install Percona Server for MySQL Pro from a binary tarball
15+
<!-- ## Install Percona Server for MySQL Pro from a binary tarball
1616
1717
You can download the required binary tarball for Percona Server for MySQL Pro using your `CLIENTID` and `TOKEN` in the following link https://repo.percona.com/private/[CLIENTID]-[TOKEN]/ps-80-pro/tarballs/.
1818
1919
Fetch and extract the correct binary tarball using your `CLIENTID` and `TOKEN`. For example, for Oracle Linux 9:
2020
2121
```{.bash data-prompt="$"}
2222
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
23-
```
23+
``` -->

docs/binary-tarball-names.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If the `glibc2` version from your operating system is not listed, then this Perc
4343
| Debug | Percona-Server-&lt;version-number&gt;-Linux.x86_64.&lt;glibc2-version&gt;-debug.tar.gz | Contains the minimal build files and test files, and debug symbols |
4444
| Zenfs | Percona-Server-&lt;version-number&gt;-Linux.x86_64.&lt;glibc2-version&gt;-zenfs.tar.gz | Contains the zenfs files and can be either a full or minimal installation |
4545

46-
=== "Pro builds"
46+
<!-- === "Pro builds"
4747
4848
The following binary tarballs are available for Percona Server for MySQL Pro builds from version 8.0.35-27 and later.
4949
@@ -60,6 +60,7 @@ If the `glibc2` version from your operating system is not listed, then this Perc
6060
|---|---|---|
6161
| Full | Percona-Server-Pro-&lt;version-number&gt;-Linux.x86_64.&lt;glibc2-version&gt;.tar.gz | Contains all files available |
6262
| Minimal | Percona-Server-Pro&lt;version-number&gt;-Linux.x86_64.&lt;glibc2-version&gt;.minimal.tar.gz | Contains binaries and libraries |
63+
-->
6364

6465
=== "Zenfs"
6566

docs/fips.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# FIPS compliance
22

3-
Percona Server for MySQL Pro includes the [capabilities](psmysql-pro.md#capabilities) that are typically requested by large enterprises. Percona Server for MySQL Pro contains packages created and tested by Percona. These packages are supported only for Percona Customers with a subscription.
3+
<!-- Percona Server for MySQL Pro includes the [capabilities](psmysql-pro.md#capabilities) that are typically requested by large enterprises. Percona Server for MySQL Pro contains packages created and tested by Percona. These packages are supported only for Percona Customers with a subscription. -->
44

5-
[Become a Percona Customer](https://www.percona.com/about/contact){.md-button}
5+
<!-- [Become a Percona Customer](https://www.percona.com/about/contact){.md-button} -->
66

77

8-
Introduced in Percona Server for MySQL Pro 8.0.35-27, Percona Server for MySQL Pro implements the same level of FIPS support as MySQL. Percona Server for MySQL can run in FIPS mode if a FIPS-enabled OpenSSL library and FIPS Object Module are available at runtime or if compiled using a FIPS-validated version of OpenSSL. You can also receive this functionality by [building Percona Server for MySQL from source code](compile-percona-server.md).
8+
<!-- Introduced in Percona Server for MySQL Pro 8.0.35-27, Percona Server for MySQL Pro implements the same level of FIPS support as MySQL. --> Percona Server for MySQL can run in FIPS mode if a FIPS-enabled OpenSSL library and FIPS Object Module are available at runtime or if compiled using a FIPS-validated version of OpenSSL. You can also receive this functionality by [building Percona Server for MySQL from source code](compile-percona-server.md).
99

1010
The Federal Information Processing Standards (FIPS) are a set of regulations mandated by the United States government that ensure the security of computer systems for non-military government agencies and their contractors. These standards specify how to perform cryptographic operations, such as encryption, hashing, and digital signatures. FIPS mode is a mode of operation that enforces these standards and rejects any non-compliant algorithms or parameters.
1111

@@ -29,7 +29,7 @@ To prepare Percona Server for MySQL for FIPS certification, do the following:
2929

3030
If you enable FIPS on Ubuntu Pro with `$ sudo pro enable fips-updates` and then disable FIPS with `$ sudo pro disable fips-updates`, Percona Server for MySQL may stop operating properly. For example, if you disable FIPS on Ubuntu Pro with `$ sudo pro disable fips-updates` and enable the FIPS mode on Percona Server with `ssl-fips-mode=ON`, Percona Server may not load the SSL certificate.
3131

32-
* Deploy [Percona Server for MySQL from the Pro build](psmysql-pro.md), which is built and tested on operating systems with FIPS pre-approved OpenSSL packages.
32+
<!-- * Deploy [Percona Server for MySQL from the Pro build](psmysql-pro.md), which is built and tested on operating systems with FIPS pre-approved OpenSSL packages. -->
3333

3434
## The FIPS mode variables
3535

@@ -69,13 +69,13 @@ To ensure that the FIPS mode is enabled, do the following:
6969
A FIPS-approved version of the OpenSSL cryptographic library has been detected in the operating system with a properly configured FIPS module available for loading. Percona Server for MySQL will load this module and run in FIPS mode.
7070
```
7171
72-
## Next steps
72+
<!-- ## Next steps
7373
7474
[Install Percona Server for MySQL Pro](install-pro.md){.md-button}
7575
7676
If you already use Percona Server for MySQL, you can
7777
78-
[Upgrade to Percona Server for MySQL Pro](upgrade-pro.md){.md-button}
78+
[Upgrade to Percona Server for MySQL Pro](upgrade-pro.md){.md-button} -->
7979
8080
8181

docs/index-contents.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
- [Differences between Percona MyRocks and Facebook MyRocks](differences.md)
3737
- [Disable Audit Log Filter logging](disable-audit-log-filter.md)
3838
- [Docker environment variables](docker-config.md)
39-
- [Downgrade from Percona Server for MySQL Pro](downgrade-from-pro.md)
39+
<!-- - [Downgrade from Percona Server for MySQL Pro](downgrade-from-pro.md) -->
4040
- [Downgrade Percona Server for MySQL](downgrade.md)
4141
- [Encrypt Binary Log Files and Relay Log Files](encrypting-binlogs.md)
4242
- [Encrypt doublewrite buffers](encrypting-doublewrite-buffers.md)
@@ -56,7 +56,7 @@
5656
- [Extended SHOW GRANTS](extended-show-grants.md)
5757
- [Fast updates with TokuDB](fast-updates.md)
5858
- [FIDO authentication plugin](fido-authentication-plugin.md)
59-
- [Files in packages built for Percona Server for MySQL Pro](pro-files.md)
59+
<!-- - [Files in packages built for Percona Server for MySQL Pro](pro-files.md) -->
6060
- [Files in the DEB package built for Percona Server for MySQL 8.0](apt-files.md)
6161
- [Files in the RPM package built for Percona Server for MySQL 8.0](yum-files.md)
6262
- [Filter the Audit Log Filter logs](filter-audit-log-filter-files.md)
@@ -83,7 +83,7 @@
8383
- [Install Percona Server for MySQL 8.0 from a binary tarball](binary-tarball-install.md)
8484
- [Install Percona Server for MySQL 8.0 using downloaded DEB packages](apt-download-deb.md)
8585
- [Install Percona Server for MySQL from a source tarball](source-tarball.md)
86-
- [Install Percona Server for MySQL Pro](install-pro.md)
86+
<!-- - [Install Percona Server for MySQL Pro](install-pro.md) -->
8787
- [Install Percona Server for MySQL using downloaded RPM packages](yum-download-rpm.md)
8888
- [Install the Audit Log Filter](install-audit-log-filter.md)
8989
- [Install the data masking component](install-data-masking-component.md)
@@ -119,7 +119,7 @@
119119
- [Percona Server for MySQL 8.0 - Documentation](index.md)
120120
- [Percona Server for MySQL feature comparison](feature-comparison.md)
121121
- [Percona Server for MySQL in-place upgrade guide: from 5.7 to 8.0](in-place-upgrade-guide.md)
122-
- [Percona Server for MySQL Pro](psmysql-pro.md)
122+
<!-- - [Percona Server for MySQL Pro](psmysql-pro.md) -->
123123
- [Percona TokuBackup](toku-backup.md)
124124
- [Percona Toolkit UDFs](udf-percona-toolkit.md)
125125
- [Percona Tools that can help with an upgrade](upgrade-pt.md)
@@ -178,7 +178,7 @@
178178
- [Upgrade from 5.7 to 8.0 overview](upgrade.md)
179179
- [Upgrade from systems that use the MyRocks or TokuDB storage engine and partitioned tables](upgrade-tokudb-myrocks.md)
180180
- [Upgrade strategies](upgrade-strategies.md)
181-
- [Upgrade to Percona Server for MySQL Pro](upgrade-pro.md)
181+
<!-- - [Upgrade to Percona Server for MySQL Pro](upgrade-pro.md) -->
182182
- [Upgrade using Standalone Packages](upgrade-standalone-packages.md)
183183
- [Upgrade using the Percona repositories](upgrade-percona-repos.md)
184184
- [Use an APT repository to install Percona Server for MySQL 8.0](apt-repo.md)

0 commit comments

Comments
 (0)