过几天操作数据库就会出现 Got a packet bigger than‘max_allowed_packet’bytes 重启之后又突然好了,这是怎么回事 max_allowed_packet已经设置微500多了,现在设置成1G了,重启之前和之后一个值重启之前和之后一个值 使用的系统CentOS release 6.5 mysql5.1.63,
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
数据导入报错:Got a packet bigger than‘max_allowed_packet’bytes的问题
这个问题可以有2个解决方法:
1.临时修改:mysql>set global max_allowed_packet=524288000;修改 #512M
2.修改my.cnf,需重启mysql
在 [MySQLd] 部分添加一句(如果存在,调整其值就可以):
max_allowed_packet=256M (根据实际情况调整数值)