https://dev.mysql.com/thread-commands.html
Daemon This thread is internal to the server, not a thread that services a client connection. A thread can have any of the following Command values: Binlog Dump This is a thread on a master server for sending binary log contents to a slave server.
https://dev.mysql.com/wait-summary-tables.html
For example, if there is an instrument for a mutex that is created for each connection, there are as many instances as there are connections. For summary tables aggregated by account, host, or user, truncation removes rows for accounts, hosts, or ...
https://dev.mysql.com/windows-server-first-start.html
They can use TCP/IP, or they can use a named pipe if the server supports named-pipe connections. MySQL for Windows also supports shared-memory connections if the server is started with the shared_memory system variable enabled. Clients can connect ... This section gives a general overview of starting the MySQL ...
https://dev.mysql.com/windows-testing.html
(Be sure that an account exists that specifies an IP address or you may not be able to connect.) You can force a MySQL client to use a named-pipe connection rather than TCP/IP by specifying the --pipe or --protocol=PIPE option, or by specifying . If ...In this case, start mysqld with the skip_name_resolve system variable enabled and use only localhost and IP addresses in the Host column of the MySQL grant ...
https://dev.mysql.com/cleartext-pluggable-authentication.html
To avoid problems if there is any possibility that the password would be intercepted, clients should connect to MySQL Server using a method that protects the password. Possibilities include SSL (see Section 6.3, “Using Encrypted Connections”), ... A client-side authentication plugin is available that enables clients to send passwords to the server as cleartext, without hashing or ...
https://dev.mysql.com/clone-plugin-encrypted-data.html
The following requirements apply: A secure connection is required when cloning remote data to ensure safe transfer of unencrypted tablespace keys over the network. An error is reported if an encrypted connection is not available or the REQUIRE NO ...
https://dev.mysql.com/create-server.html
Note The OWNER option is currently not applied, and has no effect on the ownership or operation of the server connection that is created. For example: CREATE SERVER s FOREIGN DATA WRAPPER mysql OPTIONS (USER 'Remote', HOST '198.51.100.106', DATABASE ... CREATE SERVER server_name FOREIGN DATA WRAPPER wrapper_name OPTIONS (option [, option] ...) option: { HOST character-literal | DATABASE character-literal | USER character-literal | PASSWORD character-literal | SOCKET character-literal | OWNER character-literal | PORT numeric-literal } This statement creates the definition of a server for use with the FEDERATED storage ...
https://dev.mysql.com/create-table.html
Note Older versions of MySQL used a COMMENT option for the connection string. CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name (create_definition,...) [table_options] [partition_options] CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name ...
https://dev.mysql.com/docker-mysql-getting-started.html
Because the MYSQL_ONETIME_PASSWORD option is true by default, after you have connected a mysql client to the server, you must reset the server root password by issuing this statement: mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'password'; ...
https://dev.mysql.com/environment-variables.html
MYSQL_UNIX_PORT The default Unix socket file name; used for connections to localhost. MYSQLX_UNIX_PORT The X Plugin default Unix socket file name; used for connections to localhost. USER The default user name on Windows when connecting to mysqld.