Search Results
https://dev.mysql.com/doc/refman/8.4/en/group-replication-adding-instances.html
[mysqld] # # Disable other storage engines # disabled_storage_engines="MyISAM,BLACKHOLE,FEDERATED,ARCHIVE,MEMORY" # # Replication configuration parameters # server_id=2 gtid_mode=ON enforce_gtid_consistency=ON # # Group Replication configuration # ... At this point, the group has one member in it, server s1, which has some data in ...
https://dev.mysql.com/doc/refman/8.4/en/keyring-metadata.html
To see whether a keyring plugin is loaded, check the Information Schema PLUGINS table or use the SHOW PLUGINS statement (see Section 7.6.2, “Obtaining Server Plugin Information”). If the component loaded but failed to initialize, the value is ...
https://dev.mysql.com/doc/refman/8.4/en/keyring-oci-component.html
component_keyring_oci replaces the keyring_oci plugin (now removed), and makes use of the component infrastructure. Note Only one keyring component or plugin should be enabled at a time. Enabling multiple keyring components or plugins is unsupported ... Note The Oracle Cloud Infrastructure Vault keyring component is included in MySQL Enterprise Edition, a commercial ...
https://dev.mysql.com/doc/refman/8.4/en/mysqld-safe.html
--plugin-dir=dir_name Command-Line Format --plugin-dir=dir_name Type Directory name The path name of the plugin directory. mysqld_safe is the recommended way to start a mysqld server on Unix. mysqld_safe adds some safety features such as restarting ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-thread-pool-tables.html
The following sections describe the Performance Schema tables associated with the thread pool plugin (see Section 7.6.3, “MySQL Enterprise Thread Pool”). The Performance Schema thread pool tables are implemented by the thread pool plugin and ...
https://dev.mysql.com/doc/refman/8.4/en/server-option-variable-reference.html
The following table lists all command-line options, system variables, and status variables applicable within mysqld. The table lists command-line options (Cmd-line), options valid in configuration files (Option file), server system variables ...
https://dev.mysql.com/doc/refman/8.4/en/thread-pool-information-schema-tables.html
For example, if an application uses this query: SELECT * FROM INFORMATION_SCHEMA.TP_THREAD_STATE; The application should use this query instead: SELECT * FROM performance_schema.tp_thread_state; The following sections describe the INFORMATION_SCHEMA ... Note The INFORMATION_SCHEMA thread pool tables are deprecated, and subject to removal in a future version of ...
https://dev.mysql.com/doc/refman/8.4/en/user-names.html
If the server authenticates a client using some other plugin, the authentication method that the plugin implements may or may not use a password stored in the user table. Passwords stored in the user table are encrypted using plugin-specific ...
https://dev.mysql.com/doc/refman/8.4/en/using-encrypted-connections.html
X Plugin initializes its TLS context at plugin initialization as described at Section 22.5.3, “Using Encrypted Connections with X Plugin”. Several configuration parameters are available to indicate whether to use encrypted connections, and to ...
https://dev.mysql.com/doc/refman/8.4/en/using-stack-trace.html
On glibc-based systems (Linux), the trace for an unexpected exit within a plugin looks something like: plugin/auth/auth_test_plugin.so(+0x9a6)[0x7ff4d11c29a6] To translate the relative address (+0x9a6) into a file name and line number, use this ...