Questions tagged [connection-reset]
159 questions
2
votes
1 answer
Java HttpURLConnection throwing Connection Reset exception
I'm beginning java network programming but I always get Connect Reset exception for the following code:
import java.io.*;
import java.net.*;
import java.util.*;
public class Net {
public static void main()
{
try
{
…

Daniel Oppong
- 158
- 1
- 10
2
votes
1 answer
Redis server reports Reading from client: Connection reset on amazon ec2 c1.medium instance
I run redis2.4.16 on ec2 medium instance, the persistent is standard ebs, and i checked the redis log , found there is some log report "Reading from client: Connection reset " occurs every few hours, all my clients and server are in the same…

Jerry
- 21
- 1
- 2
2
votes
2 answers
How to increase the socket timeout on the server side using Restify?
I use restify to implement a node.js server. Basically the server runs a time-consuming process per a HTTP POST request, but somehow the socket gets closed and the client receives an error message like this:
[Error: socket hang up] code:…

zs2020
- 53,766
- 29
- 154
- 219
2
votes
1 answer
Java request file, send file (Client-server)
I'm making a Client-Server. I've gotten as far as that the server can send a hardcoded file, but not a client specified. I will have to send only text files. As far as I have understood: the clients firstly sends the file name and then, the server…

MustSeeMelons
- 737
- 1
- 10
- 24
2
votes
0 answers
Axis2 frequent Connection Resets
The situation is like this:
I use Axis2 1.6.2 and I have generated Stubs (with wsdl2java) for 2 Web services - lets call them WS#1 and WS#2.
I use a pooling mechanism for the Stubs by implementing a StubPoolableFactory which extends…

kmandalas
- 418
- 1
- 5
- 17
1
vote
0 answers
Resolve "connection reset by peer" issue when storing json dumped string using python client in Redis 2.4.8
Environments: Ubuntu 10.04 64bit, Python Redis client 2.4.1, Redis
2.4.8, Python 2.6.5
Problem description:
I have some big Python dictionaries (key1:value1, key2:value2, ...).
Each key is a short string, and each value is a simplejson dumped…

bobo
- 11
- 4
1
vote
0 answers
Pika ConnectionResetError(104, 'Connection reset by peer') having 2 connections using threads
I am running into the following error with pika
pika.exceptions.StreamLostError: Stream connection lost: ConnectionResetError(104, 'Connection reset by peer')
I've read on stackoverflow and other sources that the origin of this error are missed…

Raphael Hippe
- 4,535
- 4
- 13
- 17
1
vote
1 answer
Connection Reset on driver.quit()
I'm getting the following error trying to perform in Java-Selenium driver.quit()
I have the following chrome version: 111.0.5563.65 and the last chrome driver version: 111.0.5563.64
Mar 14, 2023 2:00:24 PM…

Tes Nt
- 11
- 1
1
vote
0 answers
python/selenium problem : ERR_CONNECTION_RESET (when using proxy)
when i use proxy this error appear
when disable proxy server option , it work fine
what the problem and can anyone help
this is the code
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from…

privon
- 11
- 1
1
vote
2 answers
SVN E175002 - Jenkins Failed to Checkout Job
Jenkins keeps failing to build my job because of what appears to be an SVN error (see below; I replaced the URLs and job name for security purposes). There's been other posts about this error but none of them seem to help. Also, I noticed that the…

Ben
- 11
- 3
1
vote
0 answers
Jetty Connection-Reset Timeouts Alerting
Using embedded Jetty 9.4.x and QueuedThreadPool
In a scenario when there is way too few threads to handle Jetty tasks the QTP queue grows
New Connections have a timeout of 30secs and if in these 30secs the task is not picked from the Queue the…

Martin Penaz
- 11
- 1
1
vote
0 answers
How difference between ConnectionAbortedError, ConnectionRefusedError and ConnectionResetError and whether to catch an exception
I'm working on the internet connection programming, including Server and Client Socket, FTP, SMTP. But there is an error that depending on internet connection condition that I must handle it. But I don't know what the ConnnectionAbortedError,…

Paweenwat Maneechai
- 215
- 3
- 15
1
vote
0 answers
What can be the reason of connection down for ASPNET.CORE App in IIS?
Web have a web app ASPNET.Core 3.1 running on IIS. Load Balancer and two servers are running as system architecture. Sometimes below log is created no clients can access to application and we couldn't figured out why. Servers are up, network trace…

mkartal
- 71
- 10
1
vote
1 answer
SSLException, SocketException : Connection reset from Apache HttpClient
We are using Apache HttpClient library to call HTTP REST endpoints in the Spring application.
We are getting "Connection reset" error frequently now a days, We did not have any issue earlier but the error started appearing now, we see 1 to 5 out of…

balram rajput
- 55
- 2
- 8
1
vote
1 answer
IIS connection reset for all files larger than ca 1MB?
I have a weird issue on my local IIS dev server (running an Episerver if that's relevant) that just appeared a few weeks ago when I pulled in the latest master branch. For some reason every static file that is larger than ca. 1MB can only be…

Stein G. Strindhaug
- 5,077
- 2
- 28
- 41