mysql : Got a packet bigger than ‘max_allowed_packet’ bytes
MySQL にて、下記のようなエラーが出るようになったGot a packet bigger than 'max_allowed_packet' bytes
設定値を調べたら 1MB だった
show variables like 'max_allowed_packet' max_allowed_packet 1,048,576
16MB に拡張する
/etc/my.cnfset-variable = max_allowed_packet=16M
・mysqlを再起動
sudo /etc/init.d/mysql restart