Search Results
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-utilities-diagnostics.html
If the user connects to an instance using X Protocol, and runs any of the diagnostics utilities, they automatically establish a classic connection to the instance. MySQL Shell diagnostic utilities enable you to analyze the performance of your ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/replicaset-rescanning.html
Note replicaSet.status() also checks for missing replication users and prompts you to run replicaSet.rescan() to add any missing accounts to the metadata. This section describes how to check a ReplicaSet for consistency using replicaSet.rescan().
https://dev.mysql.com/doc/mysql-shell/9.7/en/shell-admin-api-communication-stack.html
Communication Stack Types The following communication stacks are supported: MYSQL: (default for MySQL Server 8.0.27 or newer) Simplifies the creation of InnoDB Clusters by using MySQL Server's connection security in place of the Group Replication ...
https://dev.mysql.com/doc/mysql-errors/9.7/en/index.html
For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users. It lists all error messages produced by server and client programs in MySQL 9.7. This document accompanies Error Messages and Common ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-asynchronous-data-structures.html
This section describes data structures specific to asynchronous C API functions. For information about general-purpose C API data structures, see Section 5.2, “C API Basic Data Structures”. The value may be one of the CONNECT_STAGE_ symbols ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-auto-reconnect.html
The MySQL client library can perform an automatic reconnection to the server if it finds that the connection is down when you attempt to send a statement to the server to be executed. If auto-reconnect is enabled, the library tries once to ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-basic-interface-usage.html
To connect to the server, call mysql_init() to initialize a connection handler, then call a connection-establishment function such as mysql_real_connect() with that handler (along with other information such as the host name, user name, and ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-binary-log-interface-usage.html
The initial SET statement sets the @source_binlog_checksum user-defined variable that the server takes as an indication that the client is checksum-aware. The following simple example program demonstrates the binary log C API functions. Program ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-plugin-interface.html
*/ mysql_options(&mysql, MYSQL_PLUGIN_DIR, plugin_dir); mysql_options(&mysql, MYSQL_DEFAULT_AUTH, default_auth); Typically, the program will also accept --plugin-dir and --default-auth options that enable users to override the default values. This ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-ssl-session-reuse.html
As of MySQL 8.0.29, the server supports SSL session reuse by default, but only within a configurable timeout period after a user enables the feature. For a description of server-side and client-side operations, see Reusing SSL Sessions. This ...