[solved] MySQL – Got a packet bigger than ‘max_allowed_packet’ bytes
[solved] MySQL – Got a packet bigger than ‘max_allowed_packet’ bytesYou see the following error while executing a MySQL query:ERROR 1153 (08S01) at line 138: Got a packet bigger than max_allowed_packet bytes SolutionOpen your my.cnf file – on Debian/Ubuntu, it’s /etc/mysql/my.cnf, on Fedora/RedHat/CentOS, it’s /etc/my.cnf – and search for the max_allowed_packet line.I suggest you play around with its value a bit – double or quadruple its value, restart MySQL – on Debian/Ubuntu, the command isservice mysql restart… and on Fedora/RedHat/CentOS, the command isservice mysqld restart- and see if
Read More »