From: Luis Lavena Date: 2010-01-29T01:45:14+09:00 Subject: Re: can't update and install gem On Jan 28, 9:53 am, Johny ben wrote: > > Can you access this URL from your internet browser? > > > htttp://gems.rubyforge.org/yaml > > > If that doesn't work them something is blocking RubyGems servers from > > your computer or network. > > > Looking at Windows errors for Sockets: > > >http://msdn.microsoft.com/en-us/library/ms740668(VS.85).aspx > > > WSAENOTCONN (10057) happens when you don't have an IP address or > > someone (a firewall or an antivirus) is blocking you. > > > Please verify that none of these tools is locking RubyGems. > > when I type this url on my browser >   htttp://gems.rubyforge.org/yaml > I got an error >   firefox doesn't know to open this address Perhaps you should try with one less "t" in HTTP http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol > > my firewall is disable and I uninstall the antivirus > > I got the same prob.. I'm running out of options in what could be the root of that error you're getting. Can you please try this in a irb session? require 'net/http' Net::HTTP.get_response(URI.parse("http://gems.rubyforge.org/yaml")) Net::HTTP.get_response(URI.parse("http://production.s3.rubygems.org/ yaml")) The first get_response should output something like this: => # And the second one: => # If you get an error there, then is something really wrong in your TCP/ IP configuration that blocking you out. Will need more details about your OS version, if you have adding privileges and what type of antivirus and firewall software you use. -- Luis Lavena