Skip to content

Commit b7413cb

Browse files
authored
Merge pull request #496 from nadezhdafilina/add-mysql
elsdoc-220, added els for mysql page
2 parents b67122a + 4303836 commit b7413cb

3 files changed

Lines changed: 71 additions & 0 deletions

File tree

docs/.vuepress/components/ELSApplication.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ const applications = [
7474
link: "./maven/",
7575
icon: "/images/maven.webp",
7676
},
77+
{
78+
name: "MySQL",
79+
versions: "8.0",
80+
link: "./mysql-and-percona-server/",
81+
icon: "/images/mysql2-logo.webp",
82+
},
7783
];
7884
</script>
7985

docs/.vuepress/config-client/sidebar.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,11 @@ export default {
510510
path: '/els-for-applications/maven/',
511511
icon: '/images/maven.webp',
512512
},
513+
{
514+
path: '/els-for-applications/mysql-and-percona-server/',
515+
title: 'MySQL and Percona Server',
516+
icon: '/images/mysql2-logo.webp',
517+
},
513518
]
514519
},
515520
],
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# MySQL and Percona Server
2+
3+
Endless Lifecycle Support (ELS) for MySQL and Percona Server from TuxCare provides security fixes for versions that have reached end-of-life. This allows you to continue running your deployments without vulnerability concerns, even after official support has ended.
4+
5+
## Supported OS and MySQL versions
6+
7+
| OS | Package Type | OS Version | MySQL version |
8+
| :-----------------------------------------------------: | :----------: | :--------: | :-----------: |
9+
| EL 7 (CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 7.x | 8.0 |
10+
| EL 8 (CentOS, CloudLinux, AlmaLinux, Oracle Linux, etc.) | RPM | 8.x | 8.0 |
11+
| EL 9 (CentOS, CloudLinux, AlmaLinux, Oracle Linux, etc.) | RPM | 9.x | 8.0 |
12+
13+
## Supported OS and Percona Server versions
14+
15+
| OS | Package Type | OS Version | Percona Server version |
16+
| :-------------------------------------: | :----------: | :--------: | :--------------------: |
17+
| EL 7 (CentOS, CloudLinux, Oracle Linux, etc.) | RPM | 7.x | 8.0 |
18+
19+
**Supported architecture:** x86_64 (64-bit)
20+
21+
<ContactSales text="Other versions and architectures available upon request. Contact sales@tuxcare.com for more information." />
22+
23+
## Installation
24+
25+
<ELSPrerequisites>
26+
27+
* A valid TuxCare ELS license key - contact [sales@tuxcare.com](mailto:sales@tuxcare.com) to obtain one
28+
* Root or `sudo` access to the server
29+
30+
</ELSPrerequisites>
31+
32+
<ELSSteps>
33+
34+
1. Download the installer script
35+
36+
```text
37+
wget https://repo.tuxcare.com/mysql-els/install-mysql-els-repo.sh
38+
```
39+
40+
2. Run the installer script with your license key
41+
42+
```text
43+
sh install-mysql-els-repo.sh --license-key XXXXXXXX
44+
```
45+
46+
3. Verify the repository is enabled
47+
48+
```text
49+
yum info els-mysql-release
50+
```
51+
52+
</ELSSteps>
53+
54+
## Removing the repository
55+
56+
To remove the MySQL ELS repository:
57+
58+
```text
59+
sh install-mysql-els-repo.sh --delete
60+
```

0 commit comments

Comments
 (0)