码迷,mamicode.com
首页 >  
搜索关键字:connect_timeout    ( 101个结果
LoadRunner出现error问题及解决方法总结
一、Step download timeout (120 seconds) 这是一个经常会遇到的问题,解决得办法走以下步骤: 1、 修改run time setting中的请求超时时间,增加到600s,其中有三项的参数可以一次都修改了,HTTP-request connect timeout,...
分类:其他好文   时间:2015-04-07 23:25:45    阅读次数:262
模拟HTTP请求超时时间设置
HTTP请求有两个超时时间:一个是连接超时时间,另一个是数据传输的最大允许时间(请求资源超时时间)。使用curl命令行连接超时时间用 --connect-timeout 参数来指定数据传输的最大允许时间用 -m 参数来指定例如:curl --connect-timeout 10 -m 20 "htt...
分类:Web程序   时间:2015-03-19 00:32:03    阅读次数:408
Nginx+Apache+PHP超时时间设定
今天在做一个数据导入,超时时间一直设置不对,经过几轮查询以后,才知道需要做如下多环节的配置。Nginx需要配置如下超时配置 fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300;如果使用的是Nginx的代理服务,需要添加如下配置 location / { p...
分类:Web程序   时间:2015-01-08 13:28:52    阅读次数:161
mysql 5.6 之 有关timeout参数
mysql5.6之有关timeout参数mysql>showglobalvariableslike‘%timeout%‘;+-----------------------------+----------+|Variable_name|Value|+-----------------------------+----------+|connect_timeout|1000||delayed_insert_timeout|300||innodb_flush_log_at_timeout|1||i..
分类:数据库   时间:2014-11-12 17:58:59    阅读次数:242
使用fastcgi_cache加速网站
为了提高网站的性能缓存是一把利器,nginx中可以配置fastcig_cache来缓存不需要实时获取的数据实现动静分离,nginx.conf配置如下: http { … fastcgi_connect_timeout 300;#指定连接到后端FastCGI的超时时间 fastcgi_send_tim...
分类:Web程序   时间:2014-10-12 02:19:37    阅读次数:320
mysql timeout
1.php.inimysql.connect_timeout = 60 设置mysql的超时时间,默认是60秒2.当php 在60秒钟内没有任何操作 将会断开连接: 使用while(treu) 做守护进程的时候,没有操作数据库 ,会断开连接,导致短信接口返回的结果不能够保存到数据库3. 新问题 ,....
分类:数据库   时间:2014-09-23 15:47:04    阅读次数:216
一个简单的监控网站是否正常并自动重启服务的shell脚本
#!/bin/sh if [ -z "`curl --connect-timeout 15 --max-time 20 --head --silent http://localhost/index.php|head -n 1|grep ‘200‘`" ];then echo -e "$(date +%Y-%m-%d)\n" killall nginx killall...
分类:Web程序   时间:2014-07-31 17:23:50    阅读次数:301
linux apache 自动监护脚本
1 首先安装curlyum install curl2 编写shellvi restart_apache.sh写入一下内容#!/bin/bashURL="http://127.0.0.1/"curlit(){curl --connect-timeout 35 --max-time 40 --head...
分类:系统相关   时间:2014-07-20 23:13:03    阅读次数:244
Ngnix中的fastcgi参数性能优化和解释
优化性能参数设置,在ngnix.conf中的http 层加上fastcgi参数如下: http { fastcgi_cache_path  /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m; fastcgi_connect_timeout=300; fastcgi_send_timeout=30...
分类:其他好文   时间:2014-07-13 17:17:07    阅读次数:218
ORA-12170: TNS:Connect timeout occurred ORA-06512: at "SYS.DBMS_SNAPSHOT"
Oraclejob无法自动运行报以下大量的错 Errorsinfile/oracle/admin/orcl/bdump/orcl_j000_2158798.trc: ORA-12012:erroronautoexecuteofjob482 ORA-12008:errorinmaterializedviewrefreshpath ORA-12170:TNS:Connecttimeoutoccurred ORA-06512:at"SYS.DBMS_SNAPSHOT",line1883 ..
分类:数据库   时间:2014-06-02 04:33:52    阅读次数:332
101条   上一页 1 ... 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!