Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
7answers
24k views

How to prevent SIGPIPEs (or handle them properly)

I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no ...
10
votes
4answers
13k views

How to handle a broken pipe (SIGPIPE) in python?

I've written a simple multi-threaded game server in python that creates a new thread for each client connection. I'm finding that every now and then, the server will crash because of a ...
6
votes
3answers
4k views

Django + WebKit = Broken pipe

I'm running the Django 1.2 development server and I get these Broken Pipe error messages whenever I load a page from it with Chrome or Safari. My co-worker is getting the error as well when he loads a ...
4
votes
3answers
414 views

Writing to a socket and handling broken pipes

I have some code in PHP that connects to a socket. I've been getting a broken pipe intermittently while writing to it. The problems seems to go away if write to the pipe again. I'm wondering what's ...
4
votes
3answers
673 views

Ruby on Rails Errno::EPIPE Broken pipe

I know there is a lot of people posting this online but I haven't been able to find a solution. I receive Errno::EPIPE after my website hasn't been accessed for > 6-8 hours. I read about it maybe ...
3
votes
2answers
447 views

Python and FIFOs

I was trying to understand FIFOs using Python under linux and I found a strange behavior i don't understand. The following is fifoserver.py import sys import time def readline(f): s = ...
3
votes
3answers
2k views

What causes the Broken Pipe Error?

I know that broken pipe error is thrown when the socket on the peer side is closed. But, in my test I have noted that an immediate 'send' call on this side when the peer side is closed doesn't always ...
2
votes
2answers
50 views

Client Not Receiving Data in Python

I am very new to Python and have a basic question, can a client side of a network socket connection make receive data? In my question, the client is the one who initiates the connection, which is ...
2
votes
1answer
826 views

Python BaseHTTPServer, how do I catch/trap “broken pipe” errors?

I build a short url translator engine in Python, and I'm seeing a TON of "broken pipe" errors, and I'm curious how to trap it best when using the BaseHTTPServer classes. This isn't the entire code, ...
2
votes
2answers
917 views

Calling git from PHP: Broken pipe error

I have the following PHP script: #!/usr/bin/php <?php echo shell_exec( "/usr/bin/git clone --bare ". "/home/dave/create_project/template_project ". ...
2
votes
3answers
2k views

Broken pipe no longer ends programs?

When you pipe two process and kill the one at the "output" of the pipe, the first process used to receive the "Broken Pipe" signal, which usually terminated it aswell. E.g. running $> ...
1
vote
1answer
78 views

Why does this socket connection only allow 1 send and receive?

Background I have a simple socket server setup that I am trying to allow simultaneous connections to and echo back the data. The client side launches several threads each making its own connection to ...
1
vote
2answers
62 views

Why does initializing a file pointer inside a try block cause a broken pipe?

I have a bash script which I'm reading the results from in my program. Ptr is a simple popen() wrapper. bool getResult(const char* path){ Ptr f(path); char buf[1024]; while (fgets(buf, ...
1
vote
2answers
36 views

Why does ruby except when writing to std::error or std::out when the session is gone?

I have written a program that can run for 16 or 20 hours on a linux box with some form of redhat OS. It runs fine if I start it up with nohup or redirect output to a file, but when a user starts it ...
1
vote
1answer
27 views

I screwed up my application to iphone device installer in xcode please help?

I had a missing file error that led me to a solution telling me this line of code would be my savior sudo ln -s ../../4.3\ \(8L1\)/Symbols/Developer/ Developer Instead this caused me a much greater ...
1
vote
1answer
243 views

encounter 'Broken pipe' error only while using step-by-step debug with GDB

There is unix-socket server written on PHP (but I don't think it has something to with it). Client side is written on c++ and based on boost::asio library. When I launch program normally - everything ...
1
vote
2answers
400 views

Django: SyntaxError 'unexpected EOF' while saving a Form

I have a settings page which has two forms for handling the settings for two different Models. The Profile model form works. The Chef model form doesn't. The form fails gracefully, and isn't throwing ...
1
vote
1answer
777 views

Broken pipe error in rails with memcached

I keep running into this error MemCacheError (Broken pipe): Broken pipe on my Rails app and I can't figure out why. When I access memcached via Rails.cache in my controller, the first 1 or 2 ...
1
vote
2answers
828 views

Detecting broken pipe in Solaris send() call

In solaris how to detect broken socket in send() call? i dont want to use signal. i tried SO_NOSIGPIPE and MSG_NOSIGNAL but both are not available in Solaris and my program is getting killed with ...
0
votes
0answers
28 views

pdflatex sporadic broken pipe errors when generating PDFs from .tex file [migrated]

I've written software which generates rather long PDFs from generated .tex files with pdflatex. On occasion, I'll get broken pipe errors which cause the pdf generation to fail. I have trouble ...
0
votes
0answers
71 views

Why a “broken pipe” error is touching my Django model?

I have a form that handles 1) Website logo upload 2) Website theme choose. If the client tries to upload a logo and the connection is dropped, the website loses its theme! The model used to hold ...
0
votes
2answers
203 views

Django Broken pipe in Debug mode

I have django 1.3 on the remote server behind Nginx. If I run django with apache + mod_wsgi, I can watch errors in apache log files. It's ok but I'd like to have in console. If I run django own ...
0
votes
2answers
81 views

java network-broken pipe and received file corrupted

I am trying to write a server that accepts files and write it in certain directory using DataInputStream and BufferedInputStream. The server gets 'user name(string)' 'number of files(int)' 'file ...
0
votes
1answer
751 views

Python socket.send() can only send once, then socket.error: [Errno 32] Broken pipe occurred

I'm a newbie in network programming, so please forgive me if this is a dumb question :) I created 1 client and 1 SocketServer.ThreadingMixIn server on Ubuntu 10.04.2 using Python2.7, but it seems like ...
0
votes
1answer
722 views

android: java.net.SocketException: Broken pipe LG

I'm developing an application for Android 2.2 and LG Black devices. When I run the application on my LG device I get the following SocketException, which is never happen on other devices! Broken pipe ...
0
votes
2answers
159 views

Rendering large collections of articles to PDF fails in MediaWiki with mwlib

I have installed the Mediawiki Collection Extension and mwlib to render articles (or collections of articles) to PDF. This works very well for single articles and collections with up to 20 articles. ...