https://dev.mysql.com/connection-control-installation.html
This section describes how to install the connection-control plugins, CONNECTION_CONTROL and CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS. For example, put these lines in the server my.cnf file (adjust the .so suffix for your platform as necessary): ...
https://dev.mysql.com/connection-access.html
When you attempt to connect to a MySQL server, the server accepts or rejects the connection based on these conditions: Your identity and whether you can verify your identity by supplying the correct password Whether your account is locked or ...A ...
https://dev.mysql.com/replication-solutions-encrypted-connections.html
To use an encrypted connection for the transfer of the binary log required during replication, both the master and the slave servers must support encrypted network connections. If either server does not support encrypted connections (because it has ...You must obtain (or create) a suitable security certificate that you can use on the master, and a similar certificate (from the same certificate authority) on each ...
https://dev.mysql.com/performance-schema-connection-tables.html
When a client connects to the MySQL server, it does so under a particular user name and from a particular host. Each connection table has CURRENT_CONNECTIONS and TOTAL_CONNECTIONS columns to track the current and total number of connections per ...
https://dev.mysql.com/performance-schema-connection-attribute-tables.html
Connection attributes are key-value pairs that application programs can pass to the server at connect time. These tables expose attribute information: session_account_connect_attrs: Connection attributes for the current session, and other sessions ...Applications based on the C API define the attribute set using the mysql_options() and mysql_options4() ...
https://dev.mysql.com/mysql-cluster-connection-strings.html
With the exception of the NDB Cluster management server (ndb_mgmd), each node that is part of an NDB Cluster requires a connection string that points to the management server's location. This connection string is used in establishing a connection ...host_name is a string representing a valid Internet host name or IP ...
https://dev.mysql.com/c-api-encrypted-connections.html
This section describes how C applications use the C API capabilities for encrypted connections. By default, MySQL programs attempt to connect using encryption if the server supports encrypted connections, falling back to an unencrypted connection ...A NULL return value indicates that encryption is not being ...
https://dev.mysql.com/encrypted-connections.html
With an unencrypted connection between the MySQL client and the server, someone with access to the network could watch all your traffic and inspect the data being sent or received between client and server. When you must move information over a ...
https://dev.mysql.com/connection-control-variables.html
This section describes the system and status variables that the CONNECTION_CONTROL plugin provides to enable its operation to be configured and monitored. If a client has reached the point where connection responses are delayed, the delay also ...
https://dev.mysql.com/explain-for-connection.html
To obtain the execution plan for an explainable statement executing in a named connection, use this statement: EXPLAIN [options] FOR CONNECTION connection_id; EXPLAIN FOR CONNECTION returns the EXPLAIN information that is currently being used to ...