mysqlエラーAborted connection原因と解決策-公式
If you start the server with the
or:
If a client is unable even to connect, the server increments the A client attempts to access a database but has no privileges for it. A client uses an incorrect password. A connection packet does not contain the right information. It takes more than
If these kinds of things happen, it might indicate that someone is trying to break into your server! If the general query log is enabled, messages for these types of problems are logged to it.
If a client successfully connects but later disconnects improperly or is terminated, the server increments the The client program did not call The client had been sleeping more than The client program ended abruptly in the middle of a data transfer.
Other reasons for problems with aborted connections or aborted clients: The Use of Ethernet protocol with Linux, both half and full duplex. Some Linux Ethernet drivers have this bug. You should test for this bug by transferring a huge file using FTP between the client and server machines. If a transfer goes in burst-pause-burst-pause mode, you are experiencing a Linux duplex syndrome. Switch the duplex mode for both your network card and hub/switch to either full duplex or to half duplex and test the results to determine the best setting. A problem with the thread library that causes interrupts on reads. Badly configured TCP/IP. Faulty Ethernets, hubs, switches, cables, and so forth. This can be diagnosed properly only by replacing hardware.
--log-warnings
option, you might find messages like this in your error log: Aborted connection 854 to db: 'employees' user: 'josh'
or:
ERROR 1184 (08S01): Aborted connection 17 to db: 'unconnected' user: 'zabbix' host: 'localhost' (init_connect command failed)
If a client is unable even to connect, the server increments the
Aborted_connects
status variable. Unsuccessful connection attempts can occur for the following reasons: connect_timeout
seconds to obtain a connect packet. See Section 5.1.4, “Server System Variables”. If these kinds of things happen, it might indicate that someone is trying to break into your server! If the general query log is enabled, messages for these types of problems are logged to it.
If a client successfully connects but later disconnects improperly or is terminated, the server increments the
Aborted_clients
status variable, and logs an Aborted connection message to the error log. The cause can be any of the following: mysql_close()
before exiting. wait_timeout
or interactive_timeout
seconds without issuing any requests to the server. See Section 5.1.4, “Server System Variables”. Other reasons for problems with aborted connections or aborted clients:
max_allowed_packet
variable value is too small or queries require more memory than you have allocated for mysqld. SeeSection B.5.2.10, “Packet Too Large”.