Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Yann Ylavic
On Fri, Nov 3, 2017 at 12:42 PM, Hemant Chaudhary wrote: > > I killed as kill -9 process_id_of_httpd Well, you don't let httpd cleanup anything before exiting by doing this (it's simply killed immediately). Why kill with no arg (i.e. kill -TERM) wouldn't be enough? --

Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Hemant Chaudhary
Hi I build httpd by myself from source code on HPE nonstop. On Nov 3, 2017 5:12 PM, "Yann Ylavic" wrote: > On Fri, Nov 3, 2017 at 7:09 AM, Hemant Chaudhary > wrote: > > > > When I am setting Mutex pthread or Mutex Pthread default in httpd.conf, > > getting following error > > > > AH00526: Synt

Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Yann Ylavic
On Fri, Nov 3, 2017 at 7:09 AM, Hemant Chaudhary wrote: > > When I am setting Mutex pthread or Mutex Pthread default in httpd.conf, > getting following error > > AH00526: Syntax error on line 42 of > /home/hemant_super/hemant/dev_11oct/conf/httpd.conf: > Invalid Mutex argument pthread (Mutex mecha

Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Hemant Chaudhary
Hi I killed as kill -9 process_id_of_httpd On Nov 3, 2017 5:05 PM, "Yann Ylavic" wrote: > Hi Hemant, > > On Fri, Nov 3, 2017 at 12:01 PM, Hemant Chaudhary > wrote: > > I tried with the patch of code you have asked for prefork.c and worker.c. > > But If I am closing apache gracefully then semap

Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Yann Ylavic
Hi Hemant, On Fri, Nov 3, 2017 at 12:01 PM, Hemant Chaudhary wrote: > I tried with the patch of code you have asked for prefork.c and worker.c. > But If I am closing apache gracefully then semaphore is not in shared > location but if I am killing process then still semaphore is there in shared >

Re: [users@httpd] Apache creates Semaphore

2017-11-03 Thread Hemant Chaudhary
Hi, I tried with the patch of code you have asked for prefork.c and worker.c. But If I am closing apache gracefully then semaphore is not in shared location but if I am killing process then still semaphore is there in shared location. Is there any way I get rid of semaphore because I want to run s

Re: [users@httpd] how to run one module before another

2017-11-03 Thread eeadev dev
also could please explain further what is the meaning of these aszSuc/aszPre? thank you 2017-11-03 9:23 GMT+01:00 eeadev dev : > thanks Eric, but what if they are custom modules? > > 2017-11-02 19:58 GMT+01:00 Eric Covener : > >> grep for aszSuc/aszPre in a few standard modules. >> >> On Thu, Nov

Re: [users@httpd] how to run one module before another

2017-11-03 Thread eeadev dev
thanks Eric, but what if they are custom modules? 2017-11-02 19:58 GMT+01:00 Eric Covener : > grep for aszSuc/aszPre in a few standard modules. > > On Thu, Nov 2, 2017 at 2:14 PM, eeadev dev wrote: > > How can I decide the order of two module or at least having one always > > running before anot