PDF (US Ltr)
- 43.2Mb
PDF (A4)
- 43.3Mb
Man Pages (TGZ)
- 295.2Kb
Man Pages (Zip)
- 400.4Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/selinux-checking.html
SELinux is enabled by default on some Linux distributions including Oracle Linux, RHEL, CentOS, and Fedora.
https://dev.mysql.com/doc/refman/8.0/en/selinux-context-mysqld-tcp-port.html
The default TCP port for mysqld is 3306; and the SELinux context type used is mysqld_port_t. If you configure mysqld to use a different TCP port, you may need to set the context for the new port. For example to define the SELinux context for a ...
https://dev.mysql.com/doc/refman/8.0/en/selinux-policies.html
The manual pages provide information about types and Booleans associated with the MySQL service. MySQL Server SELinux policy modules are typically installed by default. MySQL Server SELinux policy modules include: mysqld_selinux mysqld_safe_selinux ...
https://dev.mysql.com/doc/refman/8.0/en/set-resource-group.html
SET RESOURCE GROUP statements are not written to the binary log and are not replicated. SET RESOURCE GROUP group_name [FOR thread_id [, thread_id] ...] SET RESOURCE GROUP is used for resource group management (see Section 7.1.16, “Resource ...
https://dev.mysql.com/doc/refman/8.0/en/set-sql-log-bin.html
If you are using GTIDs for replication, this means that even when binary logging is later enabled again, the GTIDs written into the log from this point do not account for any transactions that occurred in the meantime, so in effect those ... SET ...
https://dev.mysql.com/doc/refman/8.0/en/shared-key-cache.html
Threads can access key cache buffers simultaneously, subject to the following conditions: A buffer that is not being updated can be accessed by multiple sessions. A buffer that is being updated causes sessions that need to use it to wait until the ...Shared access to the key cache enables the server to improve throughput ...
https://dev.mysql.com/doc/refman/8.0/en/show-binary-logs.html
Encrypted binary log files have a 512-byte file header that stores information required for encryption and decryption of the file. SHOW BINARY LOGS SHOW MASTER LOGS Lists the binary log files on the server. This statement is used as part of the ...
https://dev.mysql.com/doc/refman/8.0/en/show-create-database.html
row *************************** Database: test Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80014 DEFAULT ENCRYPTION='N' */ SHOW CREATE DATABASE quotes table and column names ...
https://dev.mysql.com/doc/refman/8.0/en/show-create-user.html
Password hash values displayed in the IDENTIFIED WITH clause of output from SHOW CREATE USER may contain unprintable characters that have adverse effects on terminal displays and in other environments. SHOW CREATE USER user This statement shows the ...
https://dev.mysql.com/doc/refman/8.0/en/show-create-view.html
Use of SHOW CREATE VIEW requires the SHOW VIEW privilege, and the SELECT privilege for the view in question. For example, you might use the ANSI SQL mode to ensure MySQL correctly interprets the standard SQL concatenation operator, the double bar ...