On Fri, May 21, 2004 at 02:19:10PM -0700, Stas Bekman wrote: > >Yes, it exists and is executable. I wonder if there is a permissions > >problem.... That appears to be a problem. If I try to run it as a normal > >user (which is how I was testing), I get the following error: > > > > Ouch! ap_mm_create(1048576, "/usr/local/apache/logs/httpd.mm.6895") > > failed > > Error: MM: mm:core: failed to open semaphore file (Permission denied): > > OS: No such file or directory
This is an inevitable failure if you build httpd patched with EAPI (for mod_ssl), using an absolute path for EAPI_MM_CORE_PATH. You can fix it by using a relative path, e.g. -DEAPI_MM_CORE_PATH=\"logs/httpd.mm\" joe