Packetforqueryistoolarge(1767212>1048576)mysql在儲存圖片時提示圖片過大

hjzgg發表於2016-04-28

原網址:http://blog.csdn.net/bigbird2012/article/details/6304417

錯誤現象:Packet for query is too large(1767212 > 1048576),You can change this value on the server by setting the `max_allow_packet` variable.

解決辦法:MySQL的一個系統引數:max_allowed_packet,其預設值為1048576(1M),
查詢:show VARIABLES like `%max_allowed_packet%`;

修改此變數的值:

MySQL安裝目錄下的

my.ini檔案中的[mysqld]段中的"max_allowed_packet = 1M",(可能有些檔案會沒有這一行的)

格式為:

[mysqld]

max_allowed_packet = 1M ( 將1M更改為4M(如果沒有這行內容,增加一行)),

儲存,

重起MySQL服務。

現在可以load大於1M的檔案了


相關文章