Answers for "ERROR 1153: Got a packet bigger than 'max_allowed_packet' bytes : (null)"

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
1

Error:Got a packet bigger than 'max_allowed_packet' bytes

run this command in your mysql console.

set global net_buffer_length=1000000; 
set global max_allowed_packet=1000000000;
Posted by: Guest on June-18-2021

Code answers related to "ERROR 1153: Got a packet bigger than 'max_allowed_packet' bytes : (null)"

Browse Popular Code Answers by Language