1. 程式人生 > >MySQL錯誤日誌出現大量的 Got an error reading communication packets 報錯

MySQL錯誤日誌出現大量的 Got an error reading communication packets 報錯

MySQL錯誤日誌出現大量的 Got an error reading communication packets 報錯

將log_warnings引數設為1

mysql> select @@log_warnings;
+----------------+
| @@log_warnings |
+----------------+
|              2 |
+----------------+
1 row in set


將log_warnings引數設為1

mysql> set global log_warnings=1;

Query OK, 0 rows affected

mysql> select @@log_warnings;
+----------------+
| @@log_warnings |
+----------------+
|              1 |
+----------------+
1 row in set

mysql>