FastCGI / Apache problems
Bob Ramstad (rramstad@nfic.com)
Mon, 26 Aug 1996 15:56:19 -0400 (EDT)
Date: Mon, 26 Aug 1996 15:56:19 -0400 (EDT)
From: Bob Ramstad <rramstad@nfic.com>
Message-Id: <199608261956.PAA11592@bill-graham.nfic.com>
To: mbrown@OpenMarket.com
In-Reply-To: Bob Ramstad's message of Mon, 26 Aug 1996 15:01:04 -0400 (EDT) <199608261901.PAA10362@bill-graham.nfic.com>
Subject: FastCGI / Apache problems
> * quite often we'll get a "FastCGI: /foo/bar/baz terminated due to
> signal" error.
>
> Unfortunately mod_fastcgi doesn't extract the signal number.
> Does the application give a core dump?
i changed mod_fastcgi to return the signal number:
} else if(WIFSIGNALED(status)) {
fprintf(errorLogFd,
"FastCGI process '%s' terminated due to signal %d\n",
DStringValue(&serverInfoPtr->execPath),
WTERMSIG(status));
}
and it's signal 11, SIGSEGV, which is causing the FastCGI processes to
die and need to be restarted.
shouldn't i be getting a core file from this? where would it be
written out to?
-- Bob