Greetings,

Would anyone have any insight as to why Apache would require a graceful restart after exactly 30000 requests to perl scripts on a webserver?

To test I have the following script running on the shell of the server:

#!/usr/bin/perl use strict; use warnings; use lib "/web_sites/cgi-modules"; use LWP::Simple; use LWP::UserAgent; use HTTP::Request; use HTTP::Response; use HTML::LinkExtor; my $url = "http://devintranet2/cgi-bin/environment.pl"; my $counter = 0; while ($counter < 60000) { my $browser = LWP::UserAgent->new(); $browser->timeout(10); my $request = HTTP::Request->new(GET => $url); my $response = $browser->request($request); if ($response->is_error()) { #printf "%s\n", $response->status_line; $counter = $counter + 1; print "$counter ["; printf "%s]\n", $response->status_line; die; } my $contents = $response->content(); #print "$contents"; #sleep(0.3); $counter = $counter + 1; print "$counter ["; printf "%s]\n", $response->status_line; }
We have apache v.2 and perl 5.8. running on HP-UX. Subsequent calls give 500 Internal Server Error. (everything else on the web server is functional and from the shell, perl scripts still run fine indefinately). The httpd.conf has the following, but changing values does not affect the 30k max requests before CGI becomes unavailable:
<IfModule worker.c> ServerLimit 16 StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule>
(I beg forgiveness if this question is more mod_perl / apache related) Thanks everyone.

In reply to Apache / 30,000 Perl script serving limit by QcMonk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.