MySQL Variables wait_timeout 数据库 参数变量解释及正确配置使用

本站中文解释

wait_timeout 是 MySQL server 中的一个变量,用于指定从 MySql 服务器端关闭客户端因超时(timeout)而未活动的连接之前,再次活动连接的时间秒数,默认值为28800秒(8 小时),可以在 my.cnf 文件中进行设置。若设置为 0,MySQL server 永不断开;若设置为-1,表示时间永远不到,但是最好不要这样设置,因太安全风险高。要设置该参数,需要在 my.cnf 中配置该变量。首先该参数会存放在 [mysqld] 标识段中,如下所示:

[mysqld]
wait_timeout=3600

其中3600代表让MySQL服务端等待客户端发送新指令的时间为3600秒,如果超过该时间客户端未发送新指令则断开连接,当然,本参数的值也可以更小,可以反映MySQL更严谨的连接管理策略

要生效需要重启MySQL服务,在Windows下可以用管理工具重启mysql服务,Linux下用命令:/etc/init.d/mysqld restart 重启

以上问题的解决方案可以在mysql官网里参考,并且可以结合实际情况进行设置和调整。

官方英文解释

wait_timeout

Command-Line Format --wait-timeout=#
System Variable wait_timeout
Scope Global, Session
Dynamic Yes
Type Integer
Default Value 28800
Minimum Value 1
Maximum Value (Windows) 2147483
Maximum Value (Other) 31536000
Unit seconds

The number of seconds the server waits for activity on a
noninteractive connection before closing it.

On thread startup, the session
wait_timeout value is
initialized from the global
wait_timeout value or from
the global
interactive_timeout value,
depending on the type of client (as defined by the
CLIENT_INTERACTIVE connect option to
mysql_real_connect()). See
also interactive_timeout.


数据运维技术 » MySQL Variables wait_timeout 数据库 参数变量解释及正确配置使用