View Full Version : Help


Judas
08-09-03, 04:27 PM
What does this mean?

I suspect its my "stuff" theres something wrong with


Internal Server Error
The sbox program encountered an error while processing this request. Please note the time of the error, anything you might have been doing at the time to trigger the problem, and forward the information to this site's Webmaster ([no address given]).
Process limit exceeded for uid 10012

--------------------------------------------------------------------------------

sbox version 1.05
$Id: sbox.c,v 1.3 2003/04/22 22:56:15 mprovost Exp $

Stryder
08-18-03, 10:41 AM
Two things, Internal Server errors can be anything from something that is wrongly scripted to a conflicting variable.

However the answer seems to be present with:
Process limit exceeded for uid 10012

Find out how to configure the process limit to be higher.

To explain how the process limit works, I'll just explain how apache webserver works:

Apache server runs on two levels, one being the "Parent" that runs as the main daemon, while the other levels are it's "Children".

"Children" are preportionary clones of the "Parent" but are used to run as Processes that can be opened/closed and killed without effecting that running "Parent".

It sounds to me the server your trying to run has a limit set for the number of processes that can be opened or "Children" that can be created. (Which are just two different termings for the same thing)

I hope that helps you if your looking through the documentation.