Blaskowitz
Blaskowitz

Reputation: 93

Unable To Configure Visual Studio 2013 to Connect to Team Foundation Server 2013

I'm trying to connect Visual Studio 2013 to TFS 2013 from a different machine, but it's giving me error: (TF31002: Unable to connect to this Team Foundation Server). The Server's IP is working, so the server is online, I've tried things such as turning off Firewall, starting VS as Administrator and it doesn't seem to work.

It's the first time I'm working with TFS, am I missing something? Thanks in advance.

Upvotes: 0

Views: 1994

Answers (1)

Giulio Vian
Giulio Vian

Reputation: 8343

Try connecting via telnet, e.g telnet yourserver 8080 at the command prompt: this checks if the client has TCP/IP connectivity. Telnet client is not installed by default in Windows, so you may have to turn the corresponding Windows Feature on.

If previous check passes, open the Home page in a browser, e.g. http://yourserver:8080/tfs. If the browser is not configured for Integrated authentication, you will receive a prompt for credential. Insert a valid user and the home page should appear.

Consider which credential you are using: if TFS server is in workgroup, use an account defined on the TFS server; if TFS server is joined to Active Directory, use an account from the same domain. In any case the account must be part of TFS Valid Users group.

Upvotes: 1

Related Questions