首页 > 数据库 > mysql > 正文

mysql超时:The last packet successfully received from the server was
2018-08-20 09:21:06 点击:

mysql超时,报错如下:The last packet successfully received from the server was使用以下命令查询超时时间(单位为秒,默认为8小

mysql超时,报错如下:

The last packet successfully received from the server was 

使用以下命令查询超时时间(单位为秒,默认为8小时):

show global variables like 'wait_timeout';



在my.ini中mysqld下面增加

wait_timeout=31536000
interactive_timeout=31536000


这里以1年为例,大家可以根据自己的需求设置。如果连接人数很多,时间可以适当的减少,连接人数少可以适当增加。

再次查询:

show global variables like 'wait_timeout';





相关热词搜索:mysql 超时

上一篇:在CentOS7上编译安装MySQL 5.7.13步骤详解
下一篇:mysql binlog日志恢复