Bug #459
closedlighttpd occasionally crashes in mod_scgi mode
Description
I am including the last lines of the error log:
2006-01-12 10:15:54: (mod_scgi.c.2029) proc: 127.0.0.1 4000 1 0 7 0
2006-01-12 10:15:55: (mod_scgi.c.2029) proc: 127.0.0.1 4000 1 0 7 0
2006-01-12 10:15:56: (mod_scgi.c.1765) Connection reset by peer 16 17
Updated by ward almost 18 years ago
This seems to happen anytime the backend scgi process accepts a connection from lighttpd and then, without an answer, closes the connection. The problem still exists in 1.14.15, but doesn't appear to exist in 1.15.0-r1691. Here's a small ruby snippet which can be used as a scgi backend to test the problem:
#!/usr/bin/env ruby require 'socket' @listenfd = [TCPServer.new("localhost", 9999)] loop do select(@listenfd) #, nil, nil) connfd = @listenfdr0.accept connfd.close end
Updated by gstrauss about 9 years ago
If lighttpd detects that the backend has accepted the connection and lighttpd sends the request to the backend before lighttpd detects that the backend has closed the connection, lighttpd does not know if the backend partially processed the request or not, and so returns an error. This is intended behavior.
Please provide more details as to what you expect and why.
Updated by stbuehler about 9 years ago
- Description updated (diff)
- Status changed from New to Invalid
- Assignee deleted (
jan)
lighty is not crashing here.
Also available in: Atom