博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 错误日志:Got an error reading communication packets
阅读量:5894 次
发布时间:2019-06-19

本文共 1258 字,大约阅读时间需要 4 分钟。

  hot3.png

Mysql 错误日志中突然发现大量的Got an error reading communication packets

grep "Got an error reading communication packets" error_log_3356.err |wc -l        

360    

 

比较基线的参数文件,发现log_warnings有变化

mysql> select @@log_warnings;+----------------+| @@log_warnings |+----------------+|              2 |+----------------+1 row in set (0.00 sec)mysql> set global log_warnings=0;Query OK, 0 rows affected (0.00 sec)mysql> select @@log_warnings;+----------------+| @@log_warnings |+----------------+|              0 |+----------------+1 row in set (0.00 sec)

 

官方文档对log_warnings的解释

Print out warnings such as Aborted connection... to the error log. This option is enabled (1) by default. To disable it, use --log-warnings=0. Specifying the option without a level value increments the current value by 1. Enabling this option by setting it greater than 0 is recommended, for example, if you use replication (you get more information about what is happening, such as messages about network failures and reconnections). If the value is greater than 1, aborted connections are written to the error log, and access-denied errors for new connection attempts are written

http://dev.mysql.com/doc/refman/5.6/en/server-options.html#option_mysqld_log-warnings

转载于:https://my.oschina.net/AnnaWu/blog/1592698

你可能感兴趣的文章
使用logrotate管理nginx日志文件
查看>>
PgSQL · 最佳实践 · 双十一数据运营平台订单Feed数据洪流实时分析方案
查看>>
MYSQL中一个特殊的MDL LOCK死锁案列
查看>>
数据补丁中需要注意的几个问题
查看>>
SAP MM 用客户寄售库存管理方式来管理周转箱等可回收物料
查看>>
TableStore+OSS:物联网数据的备份系统实践
查看>>
领域驱动设计系列(2)浅析VO、DTO、DO、PO的概念、区别和用处(转)
查看>>
Generic repository pattern and Unit of work with Entity framework
查看>>
【百度地图API】如何制作一张魔兽地图!!——CS地图也可以,哈哈哈
查看>>
nginx做反向负载均衡,后端服务器获取真实客户端ip(转)
查看>>
nfs配置样例
查看>>
Docker误区+技巧+转换关系
查看>>
私有云和混合云成功的四个关键因素
查看>>
用C++如何实现开放API接口服务器
查看>>
iOS 中 Storyboard 与 Xib 间控制器跳转 - 简化整理完整版
查看>>
leetcode 19 Remove Nth Node From End of List
查看>>
boost全平台编译方法
查看>>
对于容器环境来说 全栈监控究竟意味着什么?
查看>>
我们专访了神龙云服务器产品负责人,看懂阿里云发布的“神龙”到底“神”在哪里...
查看>>
弹性与性能兼俱,阿里云神龙云服务器全解析
查看>>