loadrunner:Action.c(4): Error -27796: Failed to connect to server "10.0.9.184:8080": [10060] Connection timed out

Action.c(4): Error -27796: Failed to connect to server "10.0.9.184:8080": [10060] Connection timed out

(1)

在负载生成器的注册表HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Tcpip/Parameters里,有如下两个键值:

TcpTimedWaitDelay和MaxUserPort

1,这里的TcpTimedWaitDelay默认值应该中是30s,所以这里,把这个值调小为5s(按需要调整)。

2,也可以把MaxUserPort调大(如果这个值不是最大值的话)。

(2)在Virtual User Generator(Record/Edit Script)中修改

run-time setting/browser emulation option, unclick simulate a new user on each iteration.

Browser Emulation 中的Download non-HTML resources 选项去掉,点击OK即可

时间: 2024-10-12 13:29:47

loadrunner:Action.c(4): Error -27796: Failed to connect to server "10.0.9.184:8080": [10060] Connection timed out的相关文章

vuser_end.c(3): Error -27796: Failed to connect to server "10.204.105.204:9192": [10060] Connection timed out

分析 因为负载生成器的性能太好,发数据包特别快,服务器也响应特别快,从而导致负载生成器的机器的端口在没有timeout之前就全部占满了.在全部占满后,就会出现上面的错误.执行netstat–na命令,可以看到打开了很多端口.所以就调整TCP的time out.即在最后一个端口还没有用到时,前面已经有端口在释放了. 成功的解决方法: 在负载生成器的注册表HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters里,有如

Action.c(28): Error -27796: Failed to connect to server "xxxx": [10060] Connection timed out

Error -27796: Failed to connect to server "125.93.51.230:8080": [10061] Connection refused.. 2013.05.31,这个27796一直是我心中的痛,试过网上所有的方法了,还是不行,我只能怀疑是不是我的客户端OS是win7的,所以才造成这种情况.....哎~! 认真分析这个错误,其实比较容易理解,就是连接不上服务,由于端口已经满了,那么自己的本机已经修改成65534,服务器已经修成成65534,那

Action.c(58): Error -27796: Failed to connect to server "hostname"

分析: 因为负载生成器的性能太好发数据特别快,服务器响应也特别快,从而导致负载生成器的端口在没有timeout之前就全部占满了. 解决方案一:   在负载生成器的注册表HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Tcpip/Parameters里,有如下两个键值: TcpTimedWaitDelay MaxUserPort 1,这里的TcpTimedWaitDelay默认值应该中是30s,所以这里,把这个值调小为5s(按需要调整).

LR报:Error 27796 Failed to connect to server

原错误信息: Action.c(58): Error -27796: Failed to connect to server "10.1.44.68:7013": [10048] Address already in useTry changing the registry valueHKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\tcpip\Parameters\TcpTimedWaitDelay to 30and HKEY_

【LR11】Error -27796: Failed to connect to server"server:port": [10060] Connection timed out错误解决办法

  场景描述:被测系统是发布在远程服务器上的,假设IP是10.10.10.10,端口是8066,那么访问地址是http://10.10.10.10:8066/,在control机器上我设置了IP欺骗. 错误现象:在场景运行时出现大量Action.c(8): Error -27796: Failed to connect to server"server:port": [10060] Connection timed out错误. 官方的troubleshooting: 查看工具的tro

Error -27796: Failed to connect to server "ip地址": [10060] Connection timed out

如果出现Error -27796: Failed to connect to server "ip地址": [10060] Connection timed out 这样的错误,如下图所示 则解决办法一是: (1)1.  修改run time setting中的请求超时时间Preferences 中点击Options 其中有三项的参数可以一次都修改了,HTTP-request connect timeout,HTTP-request receieve timeout,Step down

Loadrunner报Failed to connect to server "127.0.0.1"

问题描述:使用loadrunner12录制的脚本,用loadrunner11打开,发现报Failed to connect to server "127.0.0.1:8888".但是脚本里并没有这个地址.经查阅,发现loadrunner12在录制的时候使用了fiddler,fiddler在录制的时候是通过本地8888端口代理去访问被测网站的,而这也被loadRunner自动记录下来了.解决办法:在录制好的脚本中,打开Run -time setting,proxy,选择No proxy

使用phpmailer插件发邮件失败提示:SMTP -> ERROR: Failed to connect to server: Connection timed out (110) smtp connect() failed;

一个邮件发送问题,整整弄了我一周时间,起因是这样的,之前弄的一个网站,需要在邮箱里面认证之后才可以注册成功.网站上线了差不多一年之后,客户突然跟我说,网站不能注册了,然后我就查看了一下代码. 发现报这个错误:SMTP -> ERROR: Failed to connect to server: Connection timed out (110)   smtp connect() failed: 这是我的配置. 然后我就想,之前都是可以用的,那会不会可能是客户在邮箱里面更改客户端密码呢?然后我就

android 中Network error IOException: failed to connect to /127.0.0.1 (port 1433): connect failed: ECONNREFUSED (Connection refused)

下面对android中出现的Network error IOException: failed to connect to /127.0.0.1 (port 1433): 做一下总结: 当用android程序调用本地的sqlserver的时候,当连接ip写成127.0.0.1的时候,怎么都连不通,出现以下的错误信息: 感觉好像是代码有问题或者是清单文件中某个权限忘加了,其实不是这样的.原来模拟器默认把127.0.0.1和localhost当做本身了,在模拟器上可以用10.0.2.2代替127.0