Skip to content

Commit b0bbdf6

Browse files
PXC-4635 [DOC] Add docs for PXC 8.0.41 PRO
modified: docs/pxc-pro.md modified: variables.yml
1 parent 10b95cb commit b0bbdf6

File tree

5 files changed

+79
-7
lines changed

5 files changed

+79
-7
lines changed

docs/install-pro-amzn.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Install Percona XtraDB Cluster Pro on Amazon Linux 2023
2+
3+
--8<--- "pro-build-announcement.md"
4+
5+
This document provides guidelines how to install Pro packages of Percona XtraDB ClusterL from Percona repositories. [Check files in packages built for Percona XtraDB Cluster Pro :material-arrow-right:](pro-files.md){.md-button}
6+
7+
!!! note
8+
9+
Starting with Percona XtraDB Cluster 8.4.4-4 Pro build is available for Amazon Linux 2023 (AL2023) platform. We support both AMD64 and ARM64 versions of Amazon Linux 2023.
10+
11+
## Prerequisites
12+
13+
* You need to have root access on the node where you will be installing Percona XtraDB Cluster (either logged in as a user with root privileges or be able to run commands with sudo).
14+
15+
* Make sure that the following ports are not blocked by firewall or used by other software. Percona XtraDB Cluster requires them for communication.
16+
17+
* 3306
18+
19+
20+
* 4444
21+
22+
23+
* 4567
24+
25+
26+
* 4568
27+
28+
!!! admonition "See also"
29+
30+
For more information, see [Enabling AppArmor](apparmor.md#apparmor).
31+
32+
## Procedure
33+
34+
1. Request the access to the pro repository from Percona Support. You will receive the client ID and the access token which you use when downloading the packages.
35+
36+
2. Configure the repository and install Percona XtraDB Cluster packages
37+
38+
```{.bash data-prompt="$"}
39+
$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
40+
$ sudo percona-release setup pxc-80-pro --user_name=<Your PRO repository user name> --repo_token=<Your PRO repository token>
41+
$ sudo yum install percona-xtradb-cluster-pro-80
42+
```
43+
44+
## After installation
45+
46+
After the installation, start the `mysql` service and find the temporary password using the `grep` command.
47+
48+
```{.bash data-prompt="$"}
49+
$ sudo service mysql start
50+
$ sudo grep 'temporary password' /var/log/mysqld.log
51+
```
52+
53+
Use the temporary password to log into the server:
54+
55+
```{.bash data-prompt="$"}
56+
$ mysql -u root -p
57+
```
58+
59+
Run an `ALTER USER` statement to change the temporary password, exit the client, and stop the service.
60+
61+
```{.bash data-prompt="$"}
62+
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'rootPass';
63+
mysql> exit
64+
$ sudo service mysql stop
65+
```
66+

docs/install-pro.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
This document provides guidelines how to install Pro packages of Percona XtraDB Cluster from Percona repositories. [Check files in packages built for Percona XtraDB Cluster Pro :material-arrow-right:](pro-files.md){.md-button}
66

7+
[Install Percona XtraDB Cluster Pro on Amazon Linux 2023 :material-arrow-right:](install-pro-amzn.md){.md-button}
8+
79
## Prerequisites
810

911
* You need to have root access on the node where you will be installing Percona XtraDB Cluster (either logged in as a user with root privileges or be able to run commands with sudo).
@@ -68,16 +70,16 @@ This document provides guidelines how to install Pro packages of Percona XtraDB
6870
6. Enable the specific percona-release product.
6971

7072
```{.bash .data-prompt="$"}
71-
$ sudo percona-release setup pxc-84-pro --user_name=<Your PRO repository user name> --repo_token=<Your PRO repository token>
73+
$ sudo percona-release setup pxc-80-pro --user_name=<Your PRO repository user name> --repo_token=<Your PRO repository token>
7274
```
7375

7476
7. Install the cluster:
7577

7678
```{.bash .data-prompt="$"}
77-
$ sudo apt install -y percona-xtradb-cluster-pro-84
79+
$ sudo apt install -y percona-xtradb-cluster-pro-80
7880
```
7981

80-
Install other required packages. [Check files in the DEB package built for Percona XtraDB Cluster 8.4](apt-files.md).
82+
Install other required packages. [Check files in the DEB package built for Percona XtraDB Cluster 8.0](apt-files.md).
8183

8284
=== "On RHEL or derivatives"
8385

@@ -91,8 +93,8 @@ This document provides guidelines how to install Pro packages of Percona XtraDB
9193

9294
```{.bash data-prompt="$"}
9395
$ sudo yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
94-
$ sudo percona-release setup pxc-84-pro --user_name=<Your PRO repository user name> --repo_token=<Your PRO repository token>
95-
$ sudo yum install percona-xtradb-cluster-pro-84
96+
$ sudo percona-release setup pxc-80-pro --user_name=<Your PRO repository user name> --repo_token=<Your PRO repository token>
97+
$ sudo yum install percona-xtradb-cluster-pro-80
9698
```
9799

98100
## After installation

docs/pxc-pro.md

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Find the list of capabilities available in Percona XtraDB Cluster Pro:
88

99
| Name | Version | Description |
1010
| ----------------------------------- | ------------- | -------------|
11+
| Available on [Amazon Linux 2023](install-pro-amzn.md) | 8.0.41-32 | Amazon Linux 2023 is a purpose-built Linux distribution optimized for AWS. It’s designed for performance, security, and seamless integration with the broader AWS ecosystem. We support both AMD64 and ARM64 versions of Amazon Linux 2023. |
1112
| [FIPS compliance](fips.md)| 8.0.40-31 | FIPS compliance enables all commercial cloud service providers who want to sell and increase their presence for US government entities. |
1213

1314
## What's in it for you?
@@ -17,4 +18,6 @@ Find the list of capabilities available in Percona XtraDB Cluster Pro:
1718

1819
[Install Percona XtraDB Cluster Pro](install-pro.md){.md-button}
1920

21+
[Install Percona XtraDB Cluster Pro on Amazon Linux 2023 :material-arrow-right:](install-pro-amzn.md){.md-button}
22+
2023
Community users can receive all these capabilities by [building Percona XtraDB Cluster from the same source code](compile.md).

mkdocs-base.yml

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ nav:
148148
- pxc-pro.md
149149
- Install Percona XtraDB Cluster Pro:
150150
- install-pro.md
151+
- install-pro-amzn.md
151152
- pro-files.md
152153
- Pro build features:
153154
- fips.md

variables.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
release: '8.0.41-32'
44
version: '8.0'
5-
release_date: '2025-03-13'
6-
title_date: '2025-03-13'
5+
release_date: '2025-03-'
6+
title_date: '2025-03-'

0 commit comments

Comments
 (0)