Search Results
https://dev.mysql.com/doc/refman/9.7/en/clone-plugin-stop.html
If necessary, you can stop a cloning operation with a KILL QUERY processlist_id statement. On the recipient MySQL server instance, you can retrieve the processlist identifier (PID) for a cloning operation from the PID column of the clone_status ...
https://dev.mysql.com/doc/refman/9.7/en/component-statements.html
...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-load-plugin-v.html
struct st_mysql_client_plugin * mysql_load_plugin_v(MYSQL *mysql, const char *name, int type, int argc, va_list args) Description This function is equivalent to mysql_load_plugin(), but it accepts a va_list instead of a variable list of arguments.
https://dev.mysql.com/doc/refman/9.7/en/proxy-users.html
The plugin that authenticates a given connection may request that the connecting (external) user be treated as a different user for privilege-checking purposes. For general information about authentication plugins, see Section 8.2.17, “Pluggable ...This enables the external user to be a proxy for the second user; that is, to assume the privileges of the second user: The external user is a “proxy user” (a user who can impersonate or become known as another ...
https://dev.mysql.com/doc/refman/9.7/en/socket-pluggable-authentication.html
The server-side auth_socket authentication plugin authenticates clients that connect from the local host through the Unix socket file. The plugin uses the SO_PEERCRED socket option to obtain information about the user running the client program.
https://dev.mysql.com/doc/refman/9.7/en/test-pluggable-authentication.html
MySQL includes a test plugin that checks account credentials and logs success or failure to the server error log. This is a loadable plugin (not built in) and must be installed prior to use. The test plugin source code is separate from the server ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysqlsh.html
For MySQL Shell connections using classic MySQL protocol, specify the name of the authentication plugin, for example caching_sha2_password. This option is compatible with accounts that use the mysql_native_password authentication plugin. This option ... MySQL Shell is an advanced command-line client and code editor for ...
https://dev.mysql.com/doc/refman/9.7/en/replication-semisync-installation.html
Semisynchronous replication is implemented using plugins, which must be installed on the source and on the replicas to make semisynchronous replication available on the instances. There are different plugins for a source and for a replica. After a ...To verify this, check that the value of the have_dynamic_loading system variable is ...
https://dev.mysql.com/doc/refman/9.7/en/source-configuration-options.html
This value can be set at server startup with the --plugin_dir option. You can build a plugin as a static module (compiled into the server) or a dynamic module (built as a dynamic library that must be installed into the server using the INSTALL ...
https://dev.mysql.com/doc/refman/9.7/en/caching-sha2-pluggable-authentication.html
MySQL provides two authentication plugins that implement hashing for user account passwords: caching_sha2_password: Implements multiple hashing schemes based on the SHA2 family. This is deprecated and subject to removal, do not use this ...It uses ...