MySQL Variables net_write_timeout 数据库 参数变量解释及正确配置使用
本站中文解释
Net_write_timeout用于控制MySQL服务器等待客户端发出网络数据时的超时时间。此参数对对所有网络客户端有效,包括MySQL中以Socket函数为基础的连接通道。
默认值通常为60秒。如果客户端没有在限定的时间内发出数据,MySQL会断开连接并显示出超时错误信息。
要设置此参数,请在MySQL服务器的配置文件中使用如下语法:
net_write_timeout=value
将value替换为要设置的超时值(以秒为单位)。比如,要将超时时间设置为120秒,可以使用以下命令:
net_write_timeout=120
之后重启MySQL服务即可。
官方英文解释
net_write_timeout
Command-Line Format | --net-write-timeout=# |
---|---|
System Variable | net_write_timeout |
Scope | Global, Session |
Dynamic | Yes |
Type | Integer |
Default Value | 60 |
Minimum Value | 1 |
Maximum Value | 31536000 |
Unit | seconds |
The number of seconds to wait for a block to be written to a
connection before aborting the write. See also
net_read_timeout
.