Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 2836 invoked from network); 3 Dec 2004 05:31:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Dec 2004 05:31:44 -0000 Received: (qmail 34272 invoked by uid 500); 3 Dec 2004 05:31:43 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 34239 invoked by uid 500); 3 Dec 2004 05:31:43 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Apache HTTPD Bugs Notification List" Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 34222 invoked by uid 99); 3 Dec 2004 05:31:43 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from ajax-1.apache.org (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 02 Dec 2004 21:31:41 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (8.12.11/8.12.11) with ESMTP id iB35Vc6p030340 for ; Fri, 3 Dec 2004 06:31:38 +0100 Received: (from nobody@localhost) by ajax.apache.org (8.12.11/8.12.11/Submit) id iB35Vc8G030338; Fri, 3 Dec 2004 06:31:38 +0100 Date: Fri, 3 Dec 2004 06:31:38 +0100 Message-Id: <200412030531.iB35Vc8G030338@ajax.apache.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 32474] - Apache HTTP Server encounter problem and needs to close X-Bugzilla-Reason: AssignedTo X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=32474 ------- Additional Comments From alexw@toll.com.au 2004-12-03 06:31 ------- I have encountered this problem too - I am not sure whether this is related to bug 12340 as I am not using Win XP or mod_proxy. My environment is - Microsoft Windows 2000 [Version 5.00.2195] - Apache 2.0.52 with mod_jk2 2.04 - Tomcat 4.1.31 We want to split 2 web applications running on 1 Standalone Tomcat instance into separate Tomcat instances (ports) on the same machine. Apache will allow us to move these applications without changing URLS. ie. - http://host/app1 -> Tomcat1: /app1 - http://host/app2 -> Tomcat2: /app2 The complication is that we will now have 2 Tomcat Managers that we want to access via the Apache frontend. The idea was to use a mod_rewrite within a location tag to achieve: - http://host/manager1/html -> Tomcat1: /manager - http://host/manager2/html -> Tomcat2: /manager Our httpd.conf looks like: JkUriSet worker lb:lb_tomcat1 JkUriSet worker lb:lb_tomcat2 RewriteEngine on RewriteRule ^/manager1/(.*)$ /manager/$1 JkUriSet worker lb:lb_tomcat1 RewriteEngine on RewriteRule ^/manager2/(.*)$ /manager/$1 JkUriSet worker lb:lb_tomcat2 On Apache 2.0.52 we get the following error: Parent: child process exited with status 1073807364 -- Restarting. On Apache 2.0.48 we got the error: Parent: child process exited with status 3221225477 -- Restarting. The app1 and app2 redirects work fine. If we move the RewriteEngine/RewriteRule outside of the Location tag then it correctly rewrites the URL (but goes to the file system instead of the JK2 interface). Our workaround is simply to rename the managers on each tomcat instance (and disable the mod_rewrite package). However, I thought I would provide this info in case it assists you in fixing this bug. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org