zoukankan      html  css  js  c++  java
  • VS Test: No connection could be made because the target machine actively refused it 127.0.0.1:6910

    问题:

    在做web测试和负载测试时,突然所有的测试有例都不能用了。显示错误:No connection could be made because the target machine actively refused it 127.0.0.1:6910

    环境:

    Visual Studio 2010

    Windows 2008 R2

    TFS 2010

    解决方案:

    一开始以为是IIS的问题,经查原来是Test Agent设置的问题。

    在‘C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\QTAgentService.exe.config’中加入以下设置即可:

    <appSettings>
    // other bits …
    <add key="BindTo" value="Agent IP"/>
    </appSettings>

    参考:

    http://blogs.blackmarble.co.uk/blogs/rfennell/post/2012/09/29/TFS-Test-Agent-cannot-connect-to-Test-Controller-gives-No-connection-could-be-made-because-the-target-machine-actively-refused-it-1270016910.aspx

    http://msdn.microsoft.com/en-us/library/ff934571.aspx

  • 相关阅读:
    7.数组的扩展
    8.对象的扩展
    6.函数的扩展
    5.数值的扩展
    2.变量的解构赋值
    1.let 和 const 命令
    CTE(With As)
    delphi使用ADO在sql数据库存取图片的方法
    使用Razor生成Word
    Redis基础总结
  • 原文地址:https://www.cnblogs.com/stevenawake/p/2947957.html
Copyright © 2011-2022 走看看