Re: [users@httpd] Graceful shutdown of apache

2018-11-26 Thread Hemant Chaudhary
How can I stop process running with -X option. Terminate signal (kill -term pid) is not working here(worker mpm) wherase terminate signal works if -X option is used with prefork mpm. I am able to stop only by kill -9 signal. Thanks Hemant On Nov 26, 2018 10:10 PM, "William A Rowe Jr" wrote: G

Re: [users@httpd] Using redis for caching Apache requests

2018-11-26 Thread William A Rowe Jr
You will have to go out of your way to disable TLS tickets. In the course of normal operations, you won't see many cached TLS sessions at all, because the ticket is returned to the client, and the client re-presents that ticket to reestablish the session; no session caching required. http://httpd.

Re: [users@httpd] Graceful shutdown of apache

2018-11-26 Thread William A Rowe Jr
Graceful shutdown is a WINCH signal. In -X mode you don't have a parent -> children relationship with httpd, just the worker process. It isn't for normal operation. On Thu, Nov 22, 2018 at 7:28 AM Hemant Chaudhary < hemantdude.chaudh...@gmail.com> wrote: > Hi, > > I am not able to shutdown apa