Reputation: 401
we've been configuring a full blown tfs 2010 setup for one site. one of the requirements is to have tfs app-tier configured on https (port 443). at the same time we're using self signed certificates... we are able to successfully apply the license and bind the tfs web app to port 443, but because it is a self signed certificate our visual studio clients immediately reject connection to the app tier.
we do not immediately have the liberty to get a signed certificate, if anyone can help me with trying to get visual studio 2010 accept the self signed certificate please?
any pointers in this direction will be helpful.
thanks in advance.
-ksm
Upvotes: 2
Views: 3916
Reputation: 401
ok, so finally after a lot of digging around & playing with the configuration i've got this working like this:
server (host.name1 is a member of domain xxx.yyy)
client (client1 is member of domain xxx.yyy)
client (client2 is not a member of domain xxx.yyy; is behind a firewall & host.name1 is NATed to IP 1.2.3.4)
install the self-signed certificate as trusted source using 'certmgr.exe'
note that the FQDN host.name1.xxx.yyy will not resolve & merely using the IP 1.2.3.4 to connect to tfs will also not work in vs2010
to circumvent this add an entry in the 'hosts' file of the client
host.name1.xxx.yyy 1.2.3.4
you should now be able to ping using the hostname if the NATing was done properly
this should do the trick, worked for me :)
cheers!
Upvotes: 1
Reputation: 6521
Relevant items snipped from the Microsoft response to the MSDN post that you made that's identical (here):
In a situation where you are using a self-signed cert you will need to install the certificate into the Trusted Root Certification Authorities store(
certmgr.msc
).The Certificate Manager tool (
Certmgr.exe
) manages certificates, certificate trust lists (CTLs), and certificate revocation lists (CRLs).In addition, there is an article that may help for this issue: http://blogs.technet.com/b/sbs/archive/2007/04/10/installing-a-self-signed-certificate-as-a-trusted-root-ca-in-windows-vista.aspx
Upvotes: 2