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
2 answers

fwrite(): send of 6 bytes failed with errno=32 Broken pipe laravel

when i am using smtp without ssl it giving this error MAIL_DRIVER=smtp MAIL_HOST=mail.onestopdigitalagency.com MAIL_PORT=587 MAIL_USERNAME=thankyou@onestopdigitalagency.com MAIL_PASSWORD=******** MAIL_ENCRYPTION= a month ago it was workig fine and…
Jawwad Arif
  • 1
  • 1
  • 1
  • 2
0
votes
0 answers

Broken pipe error on Java SSLSocket server with AJAX request

I have a JAVA server receiving simple requests from the browser. These requests are just GET requests containing a HTML content that will be transformed into a PDF file on the server. After creating the PDF file, the server is supposed to send it…
0
votes
1 answer

How to reuse open client connection with forked child process on the server (TCP/IP Socket)

I want the client to communicate with the server using TCP/IP socket connection. When the connection is accepted on the server side, the child process is created. This child process read and processes incoming data. I thought, that when I do…
query
  • 329
  • 7
  • 18
0
votes
0 answers

Python: BrokenPipeError when calling iter on a torch.utils.data.DataLoader object

I'm currently following a PyTorch tutorial, and I'm trying to get this example to work. However, upon running the line dataiter = iter(trainloader) my program first does something I don't understand how it's possible – it seems to jump backwards in…
HelloGoodbye
  • 3,624
  • 8
  • 42
  • 57
0
votes
0 answers

Splitting up computational task into two processes results to BrokenPipeError [Errno 32]

I'm learning multiprocessing in Python 3.6 and here is what I am trying to do. I have two arrays, each of 10 mln records and I have a function: arrays = [] arr1 = np.random.randint(1,100,10000000) arr2 =…
Vlad
  • 181
  • 2
  • 10
0
votes
0 answers

Spring Web Sockets Chat Application

Server LogSpring Web Socket Config I developed Chat application and deployed in linux server and I have Deskrom Desk Support application to send chat messages, Chat Server is started with out any error. I am using Web Sockets Stomp protocol. After I…
0
votes
0 answers

nginx Errno 32: Broken Pipe with certain requests

I've got an NGINX/flask/Docker server using: https://github.com/tiangolo/uwsgi-nginx-flask-docker and it works for running small and infrequent requests. But if I try a number of large requests that involve downloading ~5mb worth of data from amazon…
0
votes
2 answers

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. When I render larger collections, the percentage…
Docbuilder
  • 36
  • 3
0
votes
1 answer

JBoss AS Web 7.0.2 Broken pipe exception disconnects application and db connections

My Server Configuration is as: JBOSS AS WEB 7.0.2 Java (version "1.6.0_34" OpenJDK Runtime Environment (IcedTea6 1.13.6) (rhel-1.13.6.1.el6_6-x86_64) OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode) Also, My application is on HTTPS. What is…
Rohit Raina
  • 336
  • 2
  • 7
0
votes
1 answer

Broken pipe Error on send() function

I need to make a small payload and server to download/upload or execute commands in the host computer. Error : Traceback (most recent call last): File "ServerCompletPAY.py", line 43, in a.send(command) BrokenPipeError: [Errno 32]…
Splinter
  • 1
  • 1
0
votes
1 answer

Broken pipe from ('127.0.0.1', 57124)

Well, I have written the following code to make a login functionality at backend using django 1.10 and mongoengine 0.9.0 (MongoDB),here is the code: @csrf_exempt def check_auth(request): csrf_dict = {} csrf_dict.update(csrf(request)) …
Ripundeep Gill
  • 231
  • 5
  • 18
0
votes
1 answer

Nginx tomcat throw Broken pipe error

Nginx + tomcat, often reported Broken pipe mistakes in the tomcat write back the time, the stack shows errors in sun.nio.ch.FileDispatcherImpl.write0 was thrown, the time variable, when a large number of visits thrown, Nginx and Tomcat are basically…
0
votes
2 answers

Tomcat restarts with errors (exit 143), runs and then fails after time

This is my first time asking a question on Stack Overflow. I recently configured an Ubuntu 16.04 virtual private server to host a web application. I run ngnix on a Tomcat server that reads and writes to a MySQL database. The application runs fine…
Jado
  • 1
  • 1
  • 2
0
votes
1 answer

How to fix broken pipe in Chat server using socket in Python after first request?

I am playing with socket and tried to create simple chat server with only one client connection. Code and output as follows. echo_server.py import socket host = '' port = 4538 backlog = 5 size = 1024 s = socket.socket(socket.AF_INET,…
Ishan Bhatt
  • 9,287
  • 6
  • 23
  • 44
0
votes
1 answer

svn: E175002: MERGE request on svn/xxx failed: 504 Gateway Time-out. Can't write response to output: Broken pipe

Client ERROR: svn: E175002: Commit failed (details follow): svn: E175002: MERGE request on '/svn/my_repos/trunk/app' failed: 504 Gateway Time-out Server ERROR LOG: [Thu Aug 25 09:24:49.466833 2016] [dav:error] [pid 20669] [client…
rhinoceros.xn
  • 803
  • 9
  • 12