在使用Nagios check_nrpe做监控时,有时会遇到“check_nrpe : Socket timeout after 10 seconds”的报错, 这个报错信息缺省级别是CRITICAL的。我们可能并不希望check_nrpe的Socket timeout级别设置为CRITICAL. 这时可以在check_nrpe中加入一个-u参数,使check_nrpe的Socket timeout级别设置为UNKNOWN. (参见check_nrpe -...
CHECK_NRPE: Socket timeout after 10 seconds 修改command.cfg 配置文件,把 NRPE 的时间调整到 30s define command{ command_name check_nrpe command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -t 30 } Socket timeout,这个报错信息缺省级别是 CRITICAL 的 如果不想让其报警,就设置其为 UNKNO...
CHECK_NRPE:Sockettimeoutafter10seconds 解决方法::1.vicommands.cfg--->command_line/usr/local/nagios/libexec/check_nrpe-H$HOSTADDRESS$-c$ARG1$-t60(默认命令后面加:-t60) 2.vinrpe.cfg--->command_timeout=120(设置长点) 3.使用命令测试。--->./check_nrpe-H192.168.1.203-ccheck_tomcat_mem-t30...
Additional Info: CHECK_NRPE: Socket timeout after 10 seconds. 最近一直报这个错误,查了一些资料。 CHECK_NRPE: Socket timeout after 10 seconds. 意思就是说,nrpe 进程执行某些脚本超过了10秒钟,就会发警报。 解决方法: 修改配置文件,把NRPE的时间调整到30s define command{ command_name check_nrpe command_...
简介:Notification Type: PROBLEMService: ora_login_checkHost: 197-oracle-1-1Address: 192.168.1.197State: CRITICALDate/Time: Mon Jul 30 01:11:13 CST 2012Additional Info:CHECK_NRPE: Socket timeout after 10 seconds.最近一直报这个错误,查了一些资料。
下面的代码示例演示如何使用 ReceiveTimeout 属性。 C# 复制 static void ConfigureTcpSocket(Socket tcpSocket) { // Don't allow another socket to bind to this port. tcpSocket.ExclusiveAddressUse = true; // The socket will linger for 10 seconds after // Socket.Close is called. tcpSocket.Linger...
In addition to retrying these attempts, is there a configuration setting I can adjust to up the "socket transfer time out"? I see nothing in the documentation that mentions a default ti...
The number of seconds a TCP connection will remain alive/idle before keepalive probes are sent to the remote. TypeOfService3 Change the IP header type of the service field. IpTimeToLive4 Set the IP header Time-to-Live field. ReuseAddress4 ...
引言在进行网络编程时,我们经常会遇到java.net.SocketTimeoutException: Read timed out异常,这个异常通常在网络通信过程中出现,给开发者带来了一定的困惑。...SocketTimeoutException异常是java.net.SocketTimeoutException的一种...
* specified linger time in seconds. The maximum timeout value is platform * specific. * * The setting only affects socket close. * * @param on whether or not to linger on. * @param linger how long to linger for, if on is true. ...