TFS 2013:初始化构建定义的构建时发生错误(无法解析远程名称)

TFS 2013:初始化构建定义的构建时发生错误(无法解析远程名称)

我正在尝试从我的 TFS 开始构建到我的 Build Controller。两者都不在域或活动目录中。Build Server 是专用 TFS 机器上 Hyper-V 中托管的虚拟机。

现在,每次我尝试运行构建时,都会出现以下错误:

TF215097: An error occurred while initializing a build for build definition \Website\Development_Continous: 
Exception Message: One or more errors occurred. (type AggregateException)
Exception Stack Trace:    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
   at Microsoft.TeamFoundation.Build.Client.FileContainerHelper.GetFile(TfsTeamProjectCollection projectCollection, String itemPath, Stream outputStream)
   at Microsoft.TeamFoundation.Build.Client.FileContainerHelper.GetFileAsString(TfsTeamProjectCollection projectCollection, String itemPath)
   at Microsoft.TeamFoundation.Build.Client.ProcessTemplate.Download(String sourceGetVersion)
   at Microsoft.TeamFoundation.Build.Hosting.BuildControllerWorkflowManager.PrepareRequestForBuild(WorkflowManagerActivity activity, IBuildDetail build, WorkflowRequest request, IDictionary`2 dataContext)
   at Microsoft.TeamFoundation.Build.Hosting.BuildWorkflowManager.TryStartWorkflow(WorkflowRequest request, WorkflowManagerActivity activity, BuildWorkflowInstance& workflowInstance, Exception& error, Boolean& syncLockTaken)

Inner Exception Details:

Exception Message: An error occurred while sending the request. (type HttpRequestException)
Exception Stack Trace:    at Microsoft.VisualStudio.Services.WebApi.VssHttpRetryMessageHandler.<SendAsync>d__1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
   at Microsoft.VisualStudio.Services.WebApi.HttpClientExtensions.<DownloadFileFromTfsAsync>d__2.MoveNext()

Inner Exception Details:

Exception Message: The remote name could not be resolved: 'tfs001' (type WebException)Exception Stack Trace:    at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)

这是合理的,因为“tfs001”在本地网络中不存在(只存在外部 DNS,tfs.domain.com)。我怎样才能让构建机器使用域名而不是本地网络中的主机名?

答案1

您需要为 TFS 配置一个友好的 URL。如果您随后将构建代理重新连接到您的 tfs 服务器,它应该会使用此配置。

http://www.edsquared.com/2011/01/03/Using+Friendly+DNS+Names+In+Your+TFS+Environment.aspx

相关内容