我无法访问构建服务器代理池

时间:2017-09-21 11:47:11

标签: visual-studio msbuild azure-devops azure-pipelines azure-devops-self-hosted-agent

尝试复制这些步骤

  • 下载并配置代理
  • 使用您已准备好权限的帐户登录计算机,如上所述。
  • 在您的网络浏览器中,登录VSTS或TFS,然后导航至“代理程序池”标签:
  • VSTS:https:// {your_account} .visualstudio.com / _admin / _AgentPool    TFS 2017:https:// {your_server} / tfs / DefaultCollection / _admin / _AgentPool    TFS 2015:http:// {your_server}:8080 / tfs / _admin / _AgentPool

    TFS网址对我不起作用。如何获取正确的网址?

404错误

有关此错误的详细信息 页面未找到。

以下是一些其他提示 验证您尝试访问的URL是否正确 其他技术细节: 生日ID:9096263d-09fb-4b59-b426-1a84e9a4b254发布日期和时间:21/09/2017 10:49:27(UTC)

2 个答案:

答案 0 :(得分:1)

  • 对于TFS 2017,网址格式应为:

    https[/http]://{your_server}[:port]/tfs/DefaultCollection/_admin/_AgentPool
    

    对于协议,它取决于您用于TFS 2017服务器的内容。如TFS 2017服务器的协议为http且端口为8080,您应该转到URL http://server:8080/tfs/DefaultCollection/_admin/_AgentPool

  • 对于TFS 2015,网址格式应为:

    https[/http]://{your_server}[:port]/tfs/_admin/_AgentPool
    

    协议http或https和端口还取决于您用于TFS 2015服务器的内容。例如,如果您的TFS 2015服务器协议是http,并且您使用的端口是800,那么您应该转到网址http://server:800/tfs/_admin/_AgentPool

访问正确的网址后,您可以继续部署代理。

答案 1 :(得分:1)

最后,适用于TFS2017的URL是:

http://{ServerName}:8080/tfs/{CollectionName}/

而不是官方文档中指定的一个:

http://{ServerName}:8080/tfs/{CollectionName}/_admin/_AgentPool
相关问题