apache connections

ok when starting apache with more than 256 allowable connections i get an error saying edit the "HARD_SERVER_LIMIT define" in the /usr/local/apache/include/httpd.h

so here is what that part of that file says

#ifndef HARD_SERVER_LIMIT 1000
#ifdef WIN32
#define HARD_SERVER_LIMIT 1024
#elif defined(NETWARE)
#define HARD_SERVER_LIMIT 2048
#else
#define HARD_SERVER_LIMIT 256
#endif
#endif
----------

i'll un comment one of those out and itstill gives me that error from above on start of apache

could anyone point out the correct way as its for a download mirror server which has low load and needs more connections.

thanks.

 

 

 

 

Top