- mysql报错Got an error reading comm
- HTTP Got error while reading req
- 关于Aborted connection告警日志的分析
- 解决无法mysqldump,提示索引用户为免密登录的报错
- Got error 28 from storage engine
- 解决Got timeout reading communicat
- ionic开发遇到的问题1(持续更新...)
- MySQL技术专题(3)MySQL报错Got an error
- [已解决] Got socket error trying to
- Command /bin/sh failed with exit
现象
2019-10-09T08:33:45.388854Z 414 [Note] Aborted connection 414 to db: 'database' user: 'username' host: '192.168.0.103' (Got an error reading communication packets
临时配置解决办法
# 设置最大包大小
set global max_allowed_packet = 1024*1024*1024;
# 查看包大小
show variables like '%max_allowed_packet%';
永久配置解决办法
[mysqld]
max_allowed_packet=256M
网友评论