Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 54301 invoked from network); 3 Nov 2006 10:56:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Nov 2006 10:56:05 -0000 Received: (qmail 84905 invoked by uid 500); 3 Nov 2006 10:56:11 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 84867 invoked by uid 500); 3 Nov 2006 10:56:11 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 84856 invoked by uid 500); 3 Nov 2006 10:56:11 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 84852 invoked by uid 99); 3 Nov 2006 10:56:11 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 02:56:10 -0800 Received: by brutus.apache.org (Postfix, from userid 33) id C31FA71430D; Fri, 3 Nov 2006 02:54:53 -0800 (PST) From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Subject: DO NOT REPLY [Bug 40884] New: - New rules for docBase broke manager on multiple hosts Message-ID: X-Bugzilla-Reason: AssignedTo Date: Fri, 3 Nov 2006 02:54:53 -0800 (PST) X-Virus-Checked: Checked by ClamAV on apache.org 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=40884 Summary: New rules for docBase broke manager on multiple hosts Product: Tomcat 5 Version: 5.5.20 Platform: All OS/Version: other Status: NEW Severity: regression Priority: P1 Component: Catalina AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: mloiseleur@linagora.com According to the doc (http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html) There are two ways to configure the Manager web application Context: * Install the manager.xml context configuration file in the $CATALINA_HOME/conf/[enginename]/[hostname] folder. * Configure the Manager Context within the Host configuration in your Tomcat server.xml configuration. Here is an example: The first way works only in 5.5.9 The second way works both in 5.5.9 and 5.5.20 I have put an eye on the code, the problem is here container/catalina/src/share/org/apache/catalina/startup/HostConfig.java:602: { log.warn(sm.getString("hostConfig.deployDescriptor.localDocBaseSpecified", docBase)); // Ignore specified docBase context.setDocBase(null); } When you copy the manager.xml, it needs a docBase, and it is specified in a local way. There is 2 solutions to the problem : 1: Permits to set local doc Base and change the warning. 2: Update documentation to indicate there is no longer 2 ways to add manager on multiple hosts -- 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: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org