You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@perl.apache.org by Fred Moyer <fr...@redhotpenguin.com> on 2010/02/18 10:45:44 UTC

Fwd: [mp2] mod_perl closes apache's stdin and/or stdout

Does httpd provide an api through which file descriptors can be
reallocated (probably with XS I'm guessing) into Apache::Fd or
something near?


---------- Forwarded message ----------
From: Heiko Weber <he...@wecos.de>
Date: Thu, Feb 18, 2010 at 12:21 AM
Subject: Re: [mp2] mod_perl closes apache's stdin and/or stdout
To: Salvador Ortiz Garcia <so...@msg.com.mx>
Cc: mod_perl list <mo...@perl.apache.org>


Salvador,
to avoid such issues my "external" tasks don't use STDOUT, STDIN or
STDERR. They take their parameters from control files and write their
results back to a status file. This tasks don't send any output back
to the browsers. As I said, usually some "sudo's to change some system
settings.
Well, I could replace all system() calls and just store the task jobs
into a database table, to schedule a background job with cron to check
and complete this tasks, but then I lost the immediately feedback to
the user/browser ... AND this is a lot of work for me -  unless I can
exactly repeat the issue I am not sure if it is worth to try it.
Currently it feels to me like a "leakage", sometimes a
httpd/mod_perl/process do something, and later (maybe when working on
the next client request) STDOUT is closed. This makes it hard to
create a sample program to repeat it. Within a single script I can do
almost everything: call system(), open DBI connections, write to
STDOUT, ... everything seems to be fine.
Heiko
Am 16.02.2010 um 23:26 schrieb Salvador Ortiz Garcia:

On 02/05/2010 12:16 PM, Heiko Weber wrote:

Hi André,

I know what you mean, and I can't agree with you - the server response
time is really low - most pages are finished loading in less 1-2
seconds, and the overall load of the server is at a low level. I
believe there is an issue, maybe something what Jon is talking about,
I also using some "system()" call's to execute sendmail or sudo tasks,
so maybe STDOUT really gets closed - I have no idea. I only see the
abort messages in errorlog very frequent, maybe 3-4 per minute.

Heiko



Of course STDOUT, STDIN, and STDERR get closed, not by mod_perl but by
apache. Every UNIX  process when demonized must close them to detach
from its controling terminal.

Apache reopens STDERR to its log file, but STDOUT and STDIN remain closed.

Maybe de confusion arises from the fact that when executing a CGI the
server connects them to the client socket, but in mod_perl you are in
the deamon process space.

Please check "Advanced Programing in the UNIX environment", chapter
13: "Daemon processes" by W. Richard Stevens.

Regards.

Salvador.

--
Wecos <> Heiko Weber Computer Systeme
D-21644 Sauensiek <> Immenweg 5
heiko@wecos.de <> http://www.wecos.de
Tel. +49 (4169) 91000 <> Fax +49 (4169) 919033
_______________________________________________________________
This email may contain confidential and privileged material for
the sole use of the intended recipient. Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient please contact the sender and delete all copies.
_______________________________________________________________
Diese E-Mail kann digital signiert sein. Falls Ihr E-Mail-Programm
nicht ueber die notwendigen Prueffunktionen verfuegt, ignorieren
Sie bitte die angehaengte Signatur-Datei.
_______________________________________________________________
This email may be digitally signed. If your email software does
not support the necessary validation feature, please disregard the
attached signature file.
_______________________________________________________________

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org