lee 发表于 2020-9-8 23:57:21

深入MySQL--Client连接异常分析及解析

本帖最后由 lee 于 2020-9-8 23:58 编辑

今天下午,线上的MySQL数据库出现了一个连接中断的报错,大概的报错内容如下:

200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)
200701 17:57:50 Aborted connection 50367424 to db: 'xxxxx' user: 'srv_bigdata_rwh' host: 'xxxxx' (Got an error reading communication packets)


看样子是读取通信包的时候出现的错误。于是我查询了一下MySQL的官方文档,看看这个到底是啥错。
**** Hidden Message *****
页: [1]
查看完整版本: 深入MySQL--Client连接异常分析及解析