1

In TFS, i'm doing build for my .Net project. I've got agent configured locally and build is carried using that. Error says as follows

Cannot listen on pipe name 'net.pipe://localhost/taskagent/6/xxxxxx' because another pipe endpoint is already listening on that name.

Not sure, what this exactly is....Please help. Attached the error screenshot for reference. enter image description here Note: I'm not using any TDD/test process in code

Shalem
  • 1,446
  • 2
  • 22
  • 47
  • Did you have multiple build agents on the build server? The screenshot above is not error screenshot, you could update the error screenshot with verbose debug mode enable. – PatrickLu-MSFT Nov 02 '17 at 07:05
  • Yes, multiple build agents exits on TFS server. They are configured seperatly by/for individuals. Yes, provided screenshot is not of error but of build pipeline for info – Shalem Nov 02 '17 at 12:23
  • Hi Shalem, afraid the issue is related your build agent configure or setting, could you use some other build agent to narrow down the issue. Or could you build other definitions on the same build agent? – PatrickLu-MSFT Nov 02 '17 at 15:32
  • Hi Shalem, any update on this issue, have you figured out it? – PatrickLu-MSFT Nov 22 '17 at 01:21
  • No progress yet – Shalem Nov 24 '17 at 13:33

1 Answers1

0

According to the error info not sure if it's related to TFS side. Suggest you also manually run the build directly on the build agent.

Since the agent is newly configured, to narrow down if the error is related to your environment on the build server machine. You could also create a new build definition with a simple project such as hello world and check if got the same error. If so, suggest you delete the agent, reconfigure it follow this tutorial: Deploy an agent on Windows

Besides, you could also set system.debug=true to enable verbose debug for build to get more detail error info, please refer: Enable Verbose Debug Mode for TFS Build vNext

PatrickLu-MSFT
  • 49,478
  • 5
  • 35
  • 62