Is there a place where you can find TFS 2012 RC Build Controllers / Agents Status Errors

We recently upgraded TFS 2010 to the release of TFS 2012 RC. Everything was easily updated, with the exception of our assemblers. Does anyone know where to find the logs that show why assembly controllers / agents work?

We have a single server configuration where TFS, SharePoint, SQL2008 R2, Build Controller and Build Agent are in the same window.

All new features seem to work with the exception of assemblies. When the assembly component starts, it initially shows the status of the controller and agent as a green arrow, but after 30 seconds it goes into the Red Box state.

Build config status

Then, if you click on the "Details" link to find out what the error is, I get a popup with error 500: Build Config Details Error

Any help on how to diagnose or find error logs, etc., would be appreciated.

+4
source share
3 answers

Just fixed the problem.

We have added an additional port binding to the website to make our Bug Tracker accessible through a different port. This created a scenerio where multiple bindings for the same protocol prevent the services from working properly.

We added the following to the web.config file for the TFS site, and it worked again.

<system.serviceModel> <serviceHostingEnvironment multipleSiteBindingsEnabled="true"/> </system.serviceModel> 
+5
source

Try changing the account that runs the controller / agent with the typical TFSService account.

0
source

If anyone has the same problem, this is the path to the web.config file:

Microsoft Team Foundation Server 11.0 \ Version Control Proxy \ Web Services

0
source

All Articles