Arnab, Arnab Ganguly wrote: > How much Apache occupies memory and number of files it opens for each > client request of the MaxClient value? Depends on your configuration and the extra bells and whistles. One for each listener. One each for ErrorLog, TransferLog, CustomLog etc. One or more (depending on mod_include) for each request served from the file system, as it is served One for each back-end connection through mod_proxy, mod_jk if you use that. One for each connection to MySQL from PHP if you use that. The prefork MPM has the above per process. The Worker MPM shares open log files and listener file descriptors, but might run into limitations regarding the number of files it opens to serve requests. See ulimit -n. > If it is dependent on the system , > how do we find out?Looking forward for your response. That depends on your operating system. On unix-like platforms, lsof should be able to give you that information but I can't tell you how (because I don't know how... I'd run lsof and grep for the name of the process). S.
Attachment:
smime.p7s
Description: S/MIME Cryptographic Signature