ฉันต้องการเพิ่มขนาดตัวแปร max_allowed_packet สำหรับไคลเอนต์ mysql ซึ่งใช้เซิร์ฟเวอร์ระยะไกล ฉัน googled มันและคำตอบที่ฉันพบเท่านั้นพูดถึงการเปลี่ยนแปลงตัวแปรสำหรับเซิร์ฟเวอร์
โปรแกรมไคลเอนต์ของฉันคือ MySql Workbench สำหรับ Windows 7
ฉันต้องการเพิ่มขนาดตัวแปร max_allowed_packet สำหรับไคลเอนต์ mysql ซึ่งใช้เซิร์ฟเวอร์ระยะไกล ฉัน googled มันและคำตอบที่ฉันพบเท่านั้นพูดถึงการเปลี่ยนแปลงตัวแปรสำหรับเซิร์ฟเวอร์
โปรแกรมไคลเอนต์ของฉันคือ MySql Workbench สำหรับ Windows 7
คำตอบ:
ตามที่ เอกสารประกอบ MySQL บน max_allowed_packet
บางโปรแกรมเช่น mysql และ mysqldump ช่วยให้คุณสามารถเปลี่ยนค่าฝั่งไคลเอ็นต์โดยการตั้งค่า max_allowed_packet บนบรรทัดคำสั่งหรือในไฟล์ตัวเลือก
ในบรรทัดคำสั่งหากต้องการตั้งค่าเป็น 512M เพียงเรียกใช้ไคลเอนต์ mysql ด้วยสิ่งนี้
C:\>mysql -u... -p...
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 31
Server version: 5.5.12-log MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show variables like 'max_allowed_packet';
+--------------------+----------+
| Variable_name | Value |
+--------------------+----------+
| max_allowed_packet | 16777216 |
+--------------------+----------+
1 row in set (0.00 sec)
mysql> set max_allowed_packet=1024 * 1024 * 512;
ERROR 1621 (HY000): SESSION variable 'max_allowed_packet' is read-only. Use SET GLOBAL to assign the value
mysql> set global max_allowed_packet=1024 * 1024 * 512;
Query OK, 0 rows affected (0.00 sec)
mysql> show variables like 'max_allowed_packet';
+--------------------+----------+
| Variable_name | Value |
+--------------------+----------+
| max_allowed_packet | 16777216 |
+--------------------+----------+
1 row in set (0.00 sec)
mysql> exit
Bye
C:\>mysql -u... -p...
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 32
Server version: 5.5.12-log MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show variables like 'max_allowed_packet';
+--------------------+-----------+
| Variable_name | Value |
+--------------------+-----------+
| max_allowed_packet | 536870912 |
+--------------------+-----------+
1 row in set (0.00 sec)
คุณต้องตั้งค่าทั่วโลก คุณไม่สามารถตั้งค่าในเครื่อง
คุณต้องการ สิทธิพิเศษสุด ๆ เพื่อตั้งค่าตัวแปรทั่วโลก
set max_allowed_packet=1024 * 1024 * 512;
, แสดงข้อความข้อผิดพลาด, วิ่ง set global max_allowed_packet=1024 * 1024 * 512;
ประสบความสำเร็จและจากนั้นกล่าวว่า You have to set it globally. You cannot set it locally.
. ดังนั้นคำตอบของฉันอย่างละเอียดและสมบูรณ์และเป็นเช่นนั้นมาตั้งแต่ 3 พฤษภาคม 2012