码迷,mamicode.com
首页 >  
搜索关键字:nagios nrpe timeout    ( 5399个结果
关于ORA-04021解决办法(timeout occurred while waiting to lock object)
某个应用正在锁定该表或者包表为select b.SID,b.SERIAL#,c.SQL_TEXTfrom v$locked_object a, v$session b, v$sqlarea cwhere a.SESSION_ID = b.SIDand b.SQL_ADDRESS = c.ADDRES...
分类:其他好文   时间:2014-05-09 11:06:57    阅读次数:413
jQuery同时处理一个控件的click和dblclick事件
1 jQuery.fn.single_double_click = function(single_click_callback, double_click_callback, timeout) { 2 return this.each(function(){ 3 var clicks...
分类:数据库   时间:2014-05-08 20:54:46    阅读次数:373
python subprocess
defgetResult(cmd,timeout=2):#命令超时时间 deadline=time.time()+timeout r=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE) whiletime.time()<deadlineandr.poll()isNone: time.sleep(0.1) ifr.poll()isNone:#检查子进程 r.kill() r.wait() return‘‘ r.wait() ..
分类:编程语言   时间:2014-05-07 22:30:17    阅读次数:504
[Nagios] Error: Template 'timman' specified in contact definition could not be not found (c
Check nagios配置文件报错如下:[nagios@2 etc]$ /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg Nagios Core 4.0.6Copyright (c) 2009-present Nagios Core Development Team and Community Contributor...
分类:移动开发   时间:2014-05-07 15:47:14    阅读次数:449
nagios监控windows主机
nagios监控windows主机一,编辑Nagios的主配置文件vi/usr/local/nagios/etc/nagios.cfg把下面这行最前面的#号去掉:#cfg_file=/usr/local/nagios/etc/objects/windows.cfg保存配置文件并退出。二,安装Windows代理程序NSClient++外部构件1.从http://sourceforge.net/projects/n..
分类:移动开发   时间:2014-05-06 20:16:41    阅读次数:530
nagios监控流量脚本
需求是我们需要对服务器上的流量进行监控,网络上有个流传的check_traffic.sh,它需要被监控机开启snmp。但是感觉都使用上了nagios还要开snmp。。。有点斧子剪刀一起用的感觉,所以就动手写了个监控流量的shell:#!/bin/shusage() { echo "Usage: $0...
分类:移动开发   时间:2014-05-06 08:46:56    阅读次数:361
[20140504] ADO.NET客户端超时
背景: 最近总是出现客户端超时,那么根据超时进行排查 System.Data.SqlClient.SqlException (0x80131904): Timeout expired. The timeout period elapsed prior to completion of the o.....
分类:Web程序   时间:2014-05-05 11:16:29    阅读次数:346
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
今天碰到了一个查询异常问题,上网查了一下,感谢原创和译者如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Class , 你在执行一个很费时的SQL 操作时候,可能就会碰到下面的超时异常。-------...
分类:其他好文   时间:2014-05-01 21:31:30    阅读次数:395
wait(...) notify() notifyAll()
简介wait、notify、notifyAll是Java中3个与线程有关的方法,它们都是Object类中的方法。其中,wait方法有3个重载形式:1、wait()2、wait(long timeout)3、wait(long timeout, int nanos) 这5个方法都是final方法。其中...
分类:其他好文   时间:2014-05-01 02:58:23    阅读次数:376
ubuntu杂谈(四) ------ 取消Ubuntu系统意外关机后停留在GRUB界面的解决办法
1.修改/boot/grub/grub.cfg的权限 2打开grub.cfg这个文件,vim grub.cfg,找到下图当中的 set timeout=-1 . 将"set timeout=-1" 修改为"set timeout=0" 这一方法将解决---意外关机后界面将停留在grub的问题...
分类:其他好文   时间:2014-04-29 13:25:20    阅读次数:282
5399条   上一页 1 ... 537 538 539 540 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!