Answers for "1153: got a packet bigger than 'max_allowed_packet' bytes"

SQL
0

ERROR 1153 (08S01) at line 446: Got a packet bigger than 'max_allowed_packet' bytes

run these commands in a MySQL console connected to that same server:
set global net_buffer_length=1000000; 
set global max_allowed_packet=1000000000;
Posted by: Guest on July-08-2021
4

Got a packet bigger than 'max_allowed_packet' bytes

for linux user's -> using lampp
->goto  opt/lampp/etc/my.cnf ----- and change the below vales accordingly
max_allowed_packet=1000
innodb_log_file_size = 50M
Posted by: Guest on September-01-2021

Code answers related to "1153: got a packet bigger than 'max_allowed_packet' bytes"

Code answers related to "SQL"

Browse Popular Code Answers by Language