Return-Path: X-Original-To: apmail-httpd-bugs-archive@www.apache.org Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D83DCCB24 for ; Thu, 11 Jul 2013 10:57:13 +0000 (UTC) Received: (qmail 59942 invoked by uid 500); 11 Jul 2013 10:57:12 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 59693 invoked by uid 500); 11 Jul 2013 10:57:06 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: "Apache HTTPD Bugs Notification List" List-Id: Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 59674 invoked by uid 99); 11 Jul 2013 10:57:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jul 2013 10:57:03 +0000 X-ASF-Spam-Status: No, hits=-1999.1 required=5.0 tests=ALL_TRUSTED,URG_BIZ X-Spam-Check-By: apache.org Received: from [140.211.11.115] (HELO eir.zones.apache.org) (140.211.11.115) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jul 2013 10:57:01 +0000 Received: by eir.zones.apache.org (Postfix, from userid 80) id 290901B719; Thu, 11 Jul 2013 10:56:40 +0000 (UTC) From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: [Bug 55239] New: Apache Graceful restart issue Date: Thu, 11 Jul 2013 10:56:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Apache httpd-2 X-Bugzilla-Component: mpm_worker X-Bugzilla-Version: 2.2.22 X-Bugzilla-Keywords: X-Bugzilla-Severity: critical X-Bugzilla-Who: akshay.ballarpure@nsn.com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: bugs@httpd.apache.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://issues.apache.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org https://issues.apache.org/bugzilla/show_bug.cgi?id=55239 Bug ID: 55239 Summary: Apache Graceful restart issue Product: Apache httpd-2 Version: 2.2.22 Hardware: Sun OS: Solaris Status: NEW Severity: critical Priority: P2 Component: mpm_worker Assignee: bugs@httpd.apache.org Reporter: akshay.ballarpure@nsn.com Hi, We are facing an issue during Apache graceful restart meaning some of the child httpd process are not getting restarted sometime on graceful restart. After putting below below fix in prefork.c, we are not seeing issue. static void clean_child_exit(int code) { //below code added to fix graceful restart //fix start apr_signal(SIGHUP, SIG_IGN); apr_signal(SIGTERM, SIG_IGN); apr_signal(SIGUSR1, SIG_IGN); apr_signal(AP_SIG_GRACEFUL, SIG_IGN); // fix end mpm_state = AP_MPMQ_STOPPING; if (pchild) { apr_pool_destroy(pchild); } ap_mpm_pod_close(pod); chdir_for_gprof(); exit(code); } However we would like to know if there is any impact with this changes. your urgent reply is appreciated. Thanks, Akshay -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org