Private Nuget server returns error 503 to me, but no one else

OK, here's another weird ...

I installed and installed my own nuget server for our company - it uses the latest version on nuget (2.2.31210.9045). I can hit the URL in my browser (http: // {server}) and (http: // {server} / nuget) and (http: // {server} / nuget / packages) and get all the expected answers .

However, in Visual Studio 2012, I added http: // {server} / nuget / as a custom feed, and when I load the package manager, I get "The remote server returned an error: (503) Server is unavailable."

I tried this on several machines of other colleagues, and they can view packages on the server, this seems to be just me.

I can not find any information about this or how to debug it. I'm trying to figure out if there is a way to reset, or see if there are any troubleshooting steps that I can take to figure out what might be happening.

Note. I had problems with network connection and my vs2012 installation (allowed here )

+4
source share
2 answers

Having tried everything that I could think several times without success, I came across this:

http://wangz.itysc.com/2012/08/nuget-install-package-remote-server.html

Tony says that he had a similar problem with VS2010 (and I have 2010 installed), so because of desperation, I installed the Service Pack (which seems to be unrelated), and he magically fixed it in VS2012!

0
source

try the following 2 commands

  netsh http delete urlacl url = http: // +: 80 /  
 netsh http delete urlacl url = http: // +: 443 /

then restart visual studio and check. Plese see here

Good luck.

-1
source

All Articles