Questions tagged [broken-pipe]

Broken pipe is a general term for when a process is unable to output to a socket or pipe due to no process reading from the other end of the pipe.

Broken pipe is a condition in programming where a process is unable to direct output to either a pipe or socket due to the connection being closed by a peer.

Every library function that returns this error code also generates a SIGPIPE signal; this signal terminates the program if not handled or blocked.

More info in the libc documentation

238 questions
0
votes
1 answer

Errno 32 Broken pipe, Errno 107 Transport endpoint is not connected python socket

My TCP Server is written in Qt 4.7, works well with TCP Client also written in Qt 4.7. I am trying to connect and communicate with Server with client written in python 2.7.3. I start the Server process via apache http request with…
krizajb
  • 1,715
  • 3
  • 30
  • 43
0
votes
1 answer

Javascript apparently breaking off connection with Django

The following error is send to my counsel from Django when javascript tries to page reload. Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/wsgiref/handlers.py", line 86, in…
sinθ
  • 11,093
  • 25
  • 85
  • 121
0
votes
3 answers

grep: broken pipe error python 2.2

I'm taking in a bunch of scripts, and creating a wrapper for them in python. I didn't create the scripts that were given to me. Currently I'm working with python 2.2, and the shell I'm using is a csh shell. When I run the script in the following…
de1337ed
  • 3,113
  • 12
  • 37
  • 55
0
votes
1 answer

shell process java synchronization

I want to run a shell script from a java program. This shell script invokes a system library which needs a big file as resource. My java program calls this script for every word in a document. If I call this script again and again using…
0
votes
1 answer

Please help me fix Broken pipe error

04-19 10:54:49.134: W/System.err(16287): java.net.SocketException: Connection timed out 04-19 10:54:49.139: W/System.err(16287): at org.apache.harmony.luni.platform.OSNetworkSystem.read(Native Method) 04-19 10:54:49.139: W/System.err(16287): at…
Nevis
  • 409
  • 1
  • 7
  • 8
-1
votes
0 answers

apt --fix-broken install broken pipe

I recently tried to fire up my Kali Linux and install some stuff. When i try to install something, i get the error E: Unmet Dependencies Paketlisten werden gelesen... Fertig …
twcrnr
  • 37
  • 1
  • 1
  • 7
-1
votes
1 answer

How to fix the broken pipe error in the following code?

When I run the following part of the code it generates a broken pipe error. How can I fix this issue? The error generally refers to code line which says agent[0].start(). Thank you. def main(): np.random.seed(RANDOM_SEED) assert…
Frank Moses
  • 127
  • 1
  • 5
-1
votes
1 answer

Broken Pipe in httpServer in java

I made an httpServer in java in order to send files to a client. The problem is that after I send the file I've been asked for me server keeps getting null commands in buffereader and throws broken Pipe exception. Is there a way to avoid getting…
-1
votes
1 answer

Dgrid - Firefox breaks while trying to load large data set in dgrid

6.30.15 - HOW CAN I MAKE THIS QUESTION BETTER AND MORE HELPFUL TO OTHERS? FEEDBACK WOULD BE HELPFUL. THANKS! I have a dgrid connected to a store with a very large data set. (Currently over 137,000 rows). I expect there to be a delay. When I first…
Johnson
  • 83
  • 12
-1
votes
1 answer

Tomcat 7 not releasing memory after broken pipe exception

I'm running a Tomcat 7.0.22 server with Java 1.7 and I'm running into an issue where Tomcat isn't release memory after a broken pipe exception. Background on the problem: I'm using firefox 10.0.5 to produce get request, which is handled with…
-2
votes
1 answer

Error to fill unmet dependencies

I have encountered following error when I tried to run a command that sudo apt-get -f install. I am using Ubuntu 16.04. Reading package lists... Done Building dependency tree Reading state information... Done Correcting dependencies...…
Wave
  • 111
  • 1
  • 3
  • 12
-2
votes
2 answers

Time Gap Between Socket Calls ie. Accept() and recv/send calls

I am implementing a server in which i listen for the client to connect using the accept socket call. After the accept happens and I receive the socket, i wait for around 10-15 seconds before making the first recv/send call. The send calls to the…
Rajat
  • 314
  • 4
  • 15
-2
votes
1 answer

what does means this error "broken pipe"?

Possible Duplicate: TCP client-server SIGPIPE I would like know what does this error mean?
1 2 3
15
16