timeout命令(timeout命令不生效)

http://www.itjxue.com  2023-03-18 02:21  来源:未知  点击次数: 

exec-timeout 0 10命令是什么意思

line con 0

exec-timeout 0 0

timeout login response 20

logging synchronous

console 模式下 exec-timeout 0 0 表示永不超时 exec-timeout 0 10 表示登录后无操作10秒后超时登出,这时候就要重新输入密码登陆设备。

扩展资料:

exec-timeout 5 0? ? ? ??

//设置在登录路由器后,不做任何操作的情况下,5分0秒后将与路由器断开。如果不输入此命令,当你进入路由器没有输入任何内容时,10分钟后将被路由器自动踢出。

“exec-timeout”命令的完整形式为:exec-timeout x x (也就是exec-timeout 分秒)注:如果你在此输入“exec-timeout 0 0”则表示你将永远与路由器保持联接,除非用户自己logout。

ping 的-w:timeout详解是什么?

w timeout ? ? Timeout in milliseconds to wait for each reply.

按毫秒记每一个应答的超时时间。1000毫秒=1秒

比如说,我的网络很差,延迟很大,我打开。

如果我将超时时间设置很短如10毫秒,那么如果发出一个数据包10毫秒内没有收到应答包的话,就给出请求超时的提示。但是如果我将超时时间设置为100000毫秒,就是100秒。

ping -w 1000 是使用的方式。

Ping是Windows、Unix和Linux系统下的一个命令。ping也属于一个通信协议,是TCP/IP协议的一部分。利用“ping”命令可以检查网络是否连通,可以很好地帮助我们分析和判定网络故障。应用格式,Ping空格IP地址。

该命令还可以加许多参数使用,具体是键入Ping按回车即可看到详细说明。事实上,无论是什么类型的故障诊断工具,在一些特殊网络故障面前都会显得无能为力;此时,我们所能做的就是依靠自己,从使用Ping命令开始,手工逐步排查故障原因。

mysqltimeout知多少

1.timeout变量知多少

打开mysql,用show variables like

'%timeout%'命令一看,不看不知道,一看吓一跳,结果如下面所示,这么多timeout相关变量,一下就吓尿了。。原来对mysql的了解原来

是如此的不够,好了,这么些timeout究竟各自是什么意思,花了一下午去学习,做了几个小实验,总算明白了一二,如有错误,请不吝赐教啊。

mysql show variables like '%timeout%';

+-----------------------------+----------+

| Variable_name | Value |

+-----------------------------+----------+

| connect_timeout | 10 |

| delayed_insert_timeout | 300 |

| innodb_flush_log_at_timeout | 1 |

| innodb_lock_wait_timeout | 50 |

| innodb_rollback_on_timeout | OFF |

| interactive_timeout | 28800 |

| lock_wait_timeout | 31536000 |

| net_read_timeout | 30 |

| net_write_timeout | 60 |

| rpl_stop_slave_timeout | 31536000 |

| slave_net_timeout | 3600 |

| wait_timeout | 28800 |

+-----------------------------+----------+

2.分析

下面从timeout里面找些比较常用的出来逐个分析下。

2.1 connect_timeout

connect_timeout指的是连接过程中握手的超时时间,在5.0.52以后默认为10秒,之前版本默认是5秒。官方文档是这样说的:

connect_timeout: The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake. The default value is 10 seconds as of MySQL 5.0.52 and 5 seconds before that

mysql的基本原理应该是有个监听线程循环接收请求,当有请求来时,创建线程(或者从线程池中取)来处理这个请求。由于mysql连接采用TCP

协议,那么之前势必是需要进行TCP三次握手的。TCP三次握手成功之后,客户端会进入阻塞,等待服务端的消息。服务端这个时候会创建一个线程(或者从线

程池中取一个线程)来处理请求,主要验证部分包括host和用户名密码验证。host验证我们比较熟悉,因为在用grant命令授权用户的时候是有指定

host的。用户名密码认证则是服务端先生成一个随机数发送给客户端,客户端用该随机数和密码进行多次sha1加密后发送给服务端验证。如果通过,整个连

接握手过程完成。(具体握手过程后续找到资料再分析)

由此可见,整个连接握手可能会有各种可能出错。所以这个connect_timeout值就是指这个超时时间了。可以简单测试下,运行下面的telnet命令会发现客户端会在10秒后超时返回。

telnet localhost 3306

在超时之前mysql中该连接状态如下:

256 | unauthenticated user | localhost:60595 | NULL | Connect | NULL | Reading from net | NULL

2.2 interactive_timeout wait_timeout

还是先看官方文档,从文档上来看wait_timeout和interactive_timeout都是指不活跃的连接超时时间,连接线程启动的时

候wait_timeout会根据是交互模式还是非交互模式被设置为这两个值中的一个。如果我们运行mysql -uroot

-p命令登陆到mysql,wait_timeout就会被设置为interactive_timeout的值。如果我们在wait_timeout时间

内没有进行任何操作,那么再次操作的时候就会提示超时,这是mysql client会重新连接。

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()).

测试如下:

mysql set global interactive_timeout=3; ##设置交互超时为3秒

重新进入mysql,这时候可以看到:

mysql show variables like '%timeout%'; ##wait_timeout已经被设置为3秒

+-----------------------------+----------+

| Variable_name | Value |

+-----------------------------+----------+

| connect_timeout | 10 |

| delayed_insert_timeout | 300 |

| innodb_flush_log_at_timeout | 1 |

| innodb_lock_wait_timeout | 50 |

| innodb_rollback_on_timeout | OFF |

| interactive_timeout | 3 |

| lock_wait_timeout | 31536000 |

| net_read_timeout | 30 |

| net_write_timeout | 3 |

| rpl_stop_slave_timeout | 31536000 |

| slave_net_timeout | 3600 |

| wait_timeout | 3 |

+-----------------------------+----------+

可以看到wait_timeout被设置为了interactive_timeout的值,这样,我们3秒后再执行其他命令,会提示如下:

mysql show variables like '%timeout%';

ERROR 2006 (HY000): MySQL server has gone away ##超时重连

No connection. Trying to reconnect...

Connection id: 50

Current database: *** NONE ***

+-----------------------------+----------+

| Variable_name | Value |

+-----------------------------+----------+

| connect_timeout | 10 |

| delayed_insert_timeout | 300 |

| innodb_flush_log_at_timeout | 1 |

| innodb_lock_wait_timeout | 50 |

| innodb_rollback_on_timeout | OFF |

| interactive_timeout | 3 |

| lock_wait_timeout | 31536000 |

| net_read_timeout | 30 |

| net_write_timeout | 3 |

| rpl_stop_slave_timeout | 31536000 |

| slave_net_timeout | 3600 |

| wait_timeout | 3 |

+-----------------------------+----------+

2.3 innodb_lock_wait_timeout innodb_rollback_on_timeout

还是先祭出官方文档,从文档中看,这个值是针对innodb引擎的,是innodb中行锁的等待超时时间,默认为50秒。如果超时,则当前语句会回

滚。如果设置了innodb_rollback_on_timeout,则会回滚整个事务,否则,只回滚事务等待行锁的这个语句。

The length of time in seconds an InnoDB transaction waits for a row lock before giving up. The default value is 50 seconds. A transaction that tries to access a row that is locked by another InnoDB transaction waits at most this many seconds for write access to the row before issuing the following error:

ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

同样来测试下(先创建一个innodb引擎的表test,只有一列,列名为a):

mysql CREATE TABLE `test` ( `a` int primary key) engine=innodb;

首先插入三条测试数据

mysql select * from test;

+---+

| a |

+---+

| 1 |

| 2 |

| 3 |

当前innodb_rollback_on_timeout=OFF,设置innodb_lock_wait_timeout=1,我们开启两个事务

##事务1 加行锁

mysql begin;

Query OK, 0 rows affected (0.00 sec)

mysql select * from test where a=2 for update;

+---+

| a |

+---+

| 2 |

+---+

1 row in set (0.01 sec)

##事务2,请求行锁

mysql begin;

Query OK, 0 rows affected (0.00 sec)

mysql delete from test where a=1;

Query OK, 1 row affected (0.00 sec)

mysql delete from test where a=2; ##请求行锁超时

ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

mysql select * from test;

+---+

| a |

+---+

| 2 |

| 3 |

+---+

2 rows in set (0.00 sec)

mysql begin; ##这里我们直接开启另外的事务,则原来的事务只会回滚第二条语句,最终结果就是test表中只剩下2和3.如果这里我们显示的rollback,则会回滚整个事务,保持1,2,3不变。

那么如果innodb_rollback_on_timeout=ON,同样事务2会超时,但是这个时候如果我们begin开启新的事务,那么会回滚请求锁超时的整个事务,而不是像前面那样只回滚了超时的那条语句。

2.4 lock_wait_timeout

文档中描述如下,简单说来lock_wait_timeout是元数据锁等待超时,任意锁元数据的语句都会用到这个超时参数,默认为一年。元数据锁

可以参加mysql metadata

lock,为了保证事务可串行化,不管是myisam还是innodb引擎的表,只要是开始一个事务,就会获取操作表的元数据锁,这时候如果另一个事务要

对表的元数据进行修改,则会阻塞直到超时。

This variable specifies the timeout in seconds for attempts to acquire metadata locks. The permissible values range from 1 to 31536000 (1 year). The default is 31536000.

This timeout applies to all statements that use metadata locks. These include DML and DDL operations on tables, views, stored procedures, and stored functions, as well as LOCK TABLES, FLUSH TABLES WITH READ LOCK, and HANDLER statements

测试例子:我们用一个myisam引擎的表myisam_test来测试。其中有一条记录(1,1),现在我们先开启一个事务,然后执行一个

select语句。另外打开一个session,然后执行表的元数据操作,如删除表,会发现操作阻塞直到lock_wait_timeout秒后提示超

时。

##第一个session,获取metadata lock

mysql show create table myisam_test;

-----------------------------------------------------------+

| Table | Create Table |

+-----------------------------------------------------------

| myisam_test | CREATE TABLE `myisam_test` (

`i` int(11) NOT NULL,

`j` int(11) DEFAULT NULL,

PRIMARY KEY (`i`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1

mysql start transaction;

Query OK, 0 rows affected (0.00 sec)

mysql select * from myisam_test;

+---+------+

| i | j |

+---+------+

| 2 | 1 |

+---+------+

1 row in set (0.00 sec)

##另一个session,删除表提示超时

mysql drop table myisam_test;

ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

其中更改表结构的元数据操作指令有如下这些:

DROP TABLE t;

ALTER TABLE t ...;

DROP TABLE nt;

ALTER TABLE nt ...;

LOCK TABLE t ... WRITE;

当然,多说一句,对于myisam表的加锁以及并发插入等,这篇博客myisam表锁非常详细,有兴趣的可以看看。

2.5 net_read_timeout net_write_timeout

文档中描述如下,就是说这两个参数在网络条件不好的情况下起作用。比如我在客户端用load data infile的方式导入很大的一个文件到数据库中,然后中途用iptables禁用掉mysql的

3306端口,这个时候服务器端该连接状态是reading from

net,在等待net_read_timeout后关闭该连接。同理,在程序里面查询一个很大的表时,在查询过程中同样禁用掉端口,制造网络不通的情况,

这样该连接状态是writing to net,然后在net_write_timeout后关闭该连接。slave_net_timeout类似。

The number of seconds to wait for more data from a connection before aborting the read. When the server is reading from the client, net_read_timeout is the timeout value controlling when to abort. When the server is writing to the client, net_write_timeout is the timeout value controlling when to abort

测试:我创建一个120M的数据文件data.txt。然后登陆到mysql。

mysql -uroot -h 127.0.0.1 -P 3306 --local-infile=1

导入过程设置iptables禁用3306端口。

iptables -A INPUT -p tcp --dport 3306 -j DROP

iptables -A OUTPUT -p tcp --sport 3306 -j DROP

可以看到连接状态为reading from net,然后经过net_read_timeout秒后关闭。

shell的timeout命令怎么用

timeout

相关命令:暂无相关命令

[root@localhost zhangy]# timeout --help

用法:timeout [选项] 数字[后缀] 命令 [参数]...

 或:timeout [选项]

运行指定命令,如果在指定时间后仍在运行则杀死该进程。

后缀"s"代表秒(默认值),"m"代表分,"h"代表小时,"d"代表天。

长选项必须使用的参数对于短选项时也是必需使用的。

-s, --signal=信号

指定在超时时发送的信号。信号可以是类似"HUP"的信号名或是信号数。

查看"kill -l"以获得信号列表

--help 显示此帮助信息并退出

--version 显示版本信息并退出

如果程序超时则退出状态数为124,否则返回程序退出状态。

如果没有指定信号则默认为TERM 信号。TERM 信号在进程没有捕获此信号时杀死进程。

对于另一些进程可能需要使用KILL (9)信号,当然此信号不能被捕获。

如何让cmd命令指定间隔时间执行1个命令

命令1

timeout 10

命令2

timeout 10

命令3

timeout 10

命令4

timeout 10

像上面这么写就行,timeout空格后面的是秒数,用文本写完另存后缀名.BAT,右键管理员全新运行就行

c++timeout用法

ctimeout是一个Linux命令,用于在指定的时间内执行某个程序或命令。它可以让你在一定的时间内执行某个程序,如果超过了这个时间,就会强制终止该程序。ctimeout的语法格式如下:ctimeout [OPTION] DURATION COMMAND [ARG]...其中,DURATION是一个数字,表示要执行COMMAND的最长时间(单位是秒)。COMMAND和ARG则是要执行的命令和参数。OPTION可选参数有-k、-s、-v和-V。具体用法如下:-k: 如果超时后COMMAND还在运行中,则使用kill -9杀死该进程。 -s: 如果超时后COMMAND还在运行中,则使用kill -15杀死该进程。 -v: 显示版本信息并退出 -V: 显示版本信息并检测依赖性并退出

(责任编辑:IT教学网)

更多

推荐CorelDraw教程文章