https://dev.mysql.com/performance-schema-system-variables.html
If this variable is 0, the Performance Schema does not maintain connection statistics in the accounts table or status variable information in the status_by_account table. If this variable is 0, the Performance Schema does not maintain connection ...
https://dev.mysql.com/performance-schema-thread-filtering.html
For foreground threads (resulting from client connections), the initial values of the INSTRUMENTED and HISTORY columns in threads table rows are determined by whether the user account associated with a thread matches any row in the setup_actors ...
https://dev.mysql.com/reset-slave.html
RESET SLAVE does not change any replication connection parameters such as the master host, master port, master user, or master password. If you want to reset the connection parameters intentionally, you need to use RESET SLAVE ALL, which clears the ... RESET SLAVE [ALL] [channel_option] channel_option: FOR CHANNEL channel RESET SLAVE makes the slave forget its replication position in the master's binary ...
https://dev.mysql.com/server-options.html
If the server is started using the --daemonize option and is not connected to a tty device, a default error logging option of --log-error="" is used in the absence of an explicit logging option, to direct error output to the default log file. When ...
https://dev.mysql.com/user-names.html
An account is defined in terms of a user name and the client host or hosts from which the user can connect to the server. This means that anyone can attempt to connect to the server using any user name, so you cannot make a database secure in any ...
https://dev.mysql.com/c-api-asynchronous-interface.html
Asynchronous functions enable development of applications that differ from the query processing model based on synchronous functions that block if reads from or writes to the server connection must wait. Using the asynchronous functions, an ... As ...
https://dev.mysql.com/innodb-parameters.html
For example, you might change the port that memcached listens on, reduce the maximum number of simultaneous connections, change the maximum memory size for a key-value pair, or enable debugging messages for the error log. (In practice, it is most ...
https://dev.mysql.com/mysql-cluster-log-events.html
CONNECTION Events These events are associated with connections between Cluster nodes. An event report reported in the event logs has the following format: datetime [string] severity -- message For example: 09:19:30 2005-07-24 [NDB] INFO -- Node 4 ...
https://dev.mysql.com/replication-howto-repuser.html
Each slave connects to the master using a MySQL user name and password, so there must be a user account on the master that the slave can use to connect. You can choose to create a different account for each slave, or connect to the master using the ...The user name is specified by the MASTER_USER option on the CHANGE MASTER TO command when you set up a replication ...
https://dev.mysql.com/replication-implementation-details.html
The master creates a thread to send the binary log contents to a slave when the slave connects. When a START SLAVE statement is issued on a slave server, the slave creates an I/O thread, which connects to the master and asks it to send the updates ... MySQL replication capabilities are implemented using three threads, one on the master server and two on the slave: Binlog dump ...