[BangPypers] (10054, 'Connection reset by peer')

Anand Balachandran Pillai abpillai at gmail.com
Fri Feb 12 07:26:35 CET 2010


On Fri, Feb 12, 2010 at 11:38 AM, <learningpython at aol.com> wrote:

>
>
>
>
>
>
> Hello Gurus,
>
> I am troubled suddenly with (10054, 'Connection reset by peer') error with
> same settings, which was working earlier in the day.
>
>  data,addr = self.mysock.recvfrom(buf)  after this step eclipse dies with
> (10054, 'Connection reset by peer') error.
>

This is nothing but the ECONNRESET error on the underlying socket when
it tries to do a send. In TCP terms, this means the other end suddenly
dropped the connection using a RST packet, while your program was trying
to write to it.



> Have tried after restarting the system
> Have tried after restarting the remote sytem .
> Ping to remote system is fine
>
> Note: The IP and every configuration is same as when it is working ..
>
> Any clues will help me ..
>
> Regards
> -- Anand
> _______________________________________________
> BangPypers mailing list
> BangPypers at python.org
> http://mail.python.org/mailman/listinfo/bangpypers
>



-- 
--Anand


More information about the BangPypers mailing list