Skip to content

Commit 649e2d2

Browse files
committed
Merge branch '8.0' of github.com:percona/psmysql-docs into ps-10265-8.0
2 parents 6351cb8 + f66aa38 commit 649e2d2

File tree

3 files changed

+25
-8
lines changed

3 files changed

+25
-8
lines changed

docs/audit-log-plugin.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ This variable is used to specify the filename that’s going to store the audit
684684
| Data type | String |
685685
| Default value | OFF |
686686

687-
When this variable is set to `ON` log file will be closed and reopened. This can be used for manual log rotation.
687+
When this variable is set to `ON` log file will be closed and reopened.
688688

689689
### `audit_log_buffer_size`
690690

@@ -843,7 +843,7 @@ Set the `audit_log_handler` to FILE to enable this variable.
843843
| -------------- | ------------------ |
844844
| Command Line: | Yes |
845845
| Scope: | Global |
846-
| Dynamic: | No |
846+
| Dynamic: | Yes |
847847
| Data type | Numeric |
848848
| Default value | 0 |
849849

@@ -904,10 +904,21 @@ variable has the same meaning as the appropriate parameter described in the
904904
| Dynamic: | No |
905905
| Data type | String |
906906
| Default value | LOG_INFO |
907+
| Allowed values | `LOG_EMERG`, `LOG_ALERT`, `LOG_CRIT`, `LOG_ERR`, `LOG_WARNING`, `LOG_NOTICE`, `LOG_INFO`, `LOG_DEBUG` |
907908

908-
This variable is used to specify the `priority` value for syslog. This
909-
variable has the same meaning as the appropriate parameter described in the
910-
[syslog(3) manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
909+
This variable is used to specify the severity level for syslog. The
910+
`audit_log_syslog_priority` variable does not include the facility; it only
911+
selects the severity level (`LOG_EMERG``LOG_DEBUG`).
912+
913+
The full syslog priority that `syslog()` receives is built internally by OR-ing
914+
the configured facility (`audit_log_syslog_facility`) with this level.
915+
916+
The default `LOG_INFO` means "ordinary informational messages"; you can raise or
917+
lower the level as needed, while the facility stays at its default unless you
918+
change it explicitly.
919+
920+
For more details about syslog priority levels, see the [syslog(3)
921+
manual](https://man7.org/linux/man-pages/man3/syslog.3.html).
911922

912923
## Status Variables
913924

docs/release-notes/8.0.44-35.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,10 @@ If these two counts differ, the formula calculates the wrong capacity, leading t
7070

7171
* [PS-10227](https://perconadev.atlassian.net/browse/PS-10227): An unexpected server exit occurred when `rocksdb_table_stats_skip_system_cf` was enabled. Previously, enabling this option left the system column‑family pointer null during RocksDB recovery, causing an assertion failure in `Rdb_cf_manager::get_cf()` and aborting `mysqld` with signal 6. The fix introduced proper initialization and safety checks for the system column family, allowing the server to start normally while still skipping system‑CF statistics.
7272

73+
## Packaging and build notes
74+
75+
* Percona Server for MySQL 8.0 does not support Debian 13 or Red Hat Enterprise Linux 10.
76+
7377
## Useful links
7478

7579
Install [Percona Server for MySQL 8.0](https://docs.percona.com/percona-server/8.0/installation.html)

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)