mysql提示got timeout reading communication packets怎么办

发布时间:2021-07-28 11:23:04 作者:小新
来源:亿速云 阅读:1209

小编给大家分享一下mysql提示got timeout reading communication packets怎么办,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

错误提示:
user: 'root' host: `localhost' (Got timeout reading communication packets)
MYSQL server has gone away

引起这个原因是不可怕的.原因是更改了系统的断开时间.

mysql>show gloable variables like "%timeout%";
进行查看
interactive_timeout 的黓认值为28800
wait_timeout 的默认值这:120

根据情况增加吧.
这两个值是一个全局变量,可以动态增加,如:
mysql> set global interactive_timeout=28800;
Query OK, 0 rows affected (0.00 sec)
mysql> show global variables like "interactive_timeout";
+---------------------+-------+
| Variable_name | Value |
+---------------------+-------+
| interactive_timeout | 28800 |
+---------------------+-------+
1 row in set (0.00 sec)

可以导致Got timeout reading communication packets错误的原因

https://dev.mysql.com/doc/refman/5.5/en/communication-errors.html

可能导致Got Timeout reading communication packets错误的原因有如下几个:

A client attempts to access a database but has no privileges for it.(没有权限)

A client uses an incorrect password.(密码错误)

A connection packet does not contain the right information.(连接没有包含正确信息)

It takes more than connect_timeout seconds to obtain a connect packet. (获取连接信息起过connect_timeout的时长)

The client program did not call mysql_close() before exiting.(客户端没有调用mysql_close()函数)

The client had been sleeping more than wait_timeout or interactive_timeout seconds without issuing any requests to the server. (客户端的空连接时间过长,超过了wait_timeout和interactive_timeout的时间)

The client program ended abruptly in the middle of a data transfer.(数据传输过程中终结)

错误排查:

因为我们手机版与pc端的php函数不同步导致的问题,所以仔细检查一下问题就解决了。

以上是“mysql提示got timeout reading communication packets怎么办”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

推荐阅读:
  1. 使用MySQL5.7半同步复制时发现主库报错怎么处理
  2. MYSQL reading communication packets出现错误处理方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

mysql

上一篇:java中有界类型参数如何使用

下一篇:Java中如何使用SpringCloudAlibaba Sentinel组件

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》