Reputation: 4000
We recently upgraded our TFS 2010 to the TFS 2012 RC release. Everything upgraded easily with the exception of our Builds. Does anyone know where to find any logs that show why the build controllers/agents are running?
We have a Single Server configuration where TFS, SharePoint, SQL2008 R2, Build Controller, and Build Agent are all on the same box.
All of the new features appear to be working with the exception of builds. When the build component is started, it initially shows the Controller and Agent as "Green Arrow" status, but after 30 seconds goes to the "Red Box" status.
Then if you click the "Details" link to see what the error is, I receive a popup with a 500 error:
Any help on how to diagnose or find error logs, etc. would be appreciated.
Upvotes: 4
Views: 1135
Reputation: 12683
In case 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
Upvotes: 0
Reputation: 4000
Just fixed the problem.
We had added an additional port binding to the Web Site to make our Bug Tracker available via another port. This created a scenerio where multiple bindings for the same protocol prevent the services from working correctly.
We added the following to the web.config file for the TFS site and everything started working again.
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
</system.serviceModel>
Upvotes: 5
Reputation: 6609
Try changing the account that runs the controller/agent with a typical TFSService account.
Upvotes: 0