执行mysql 语句出现:1153 - Got a packet bigger than 'max_allowed_packet' bytes;
1153-得到一个大于“max_allowed_packet”字节的数据包。
数据包太大了怎么办。该配置吧。
查看max_allowed_packet
show global variables like 'max_allowed_packet';
修改my.cnf文件
停止mysql
service mysqld stop
修改my.cnf
vim /etc/my.cnf
添加或修改以下配置:
max_allowed_packet=64M
重启msyql
service mysqld start