Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@apache.org Received: (qmail 86291 invoked from network); 5 Feb 2002 02:19:28 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 5 Feb 2002 02:19:28 -0000 Received: (qmail 10139 invoked by uid 97); 5 Feb 2002 02:19:25 -0000 Delivered-To: qmlist-jakarta-archive-tomcat-dev@jakarta.apache.org Received: (qmail 10105 invoked by uid 97); 5 Feb 2002 02:19:24 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 10094 invoked from network); 5 Feb 2002 02:19:23 -0000 Message-ID: <022901c1adeb$807b2b40$3512a8c0@wspunkytse> Reply-To: "Punky Tse" From: "Punky Tse" To: "Tomcat Developers List" Cc: "Donna Molinari" References: Subject: Re: Issues with Tomcat 4.0.1 and WebAppDeploy Date: Tue, 5 Feb 2002 10:19:10 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Hey, why do you change the port from 8008 to 8009? In tomcat connector side, 8008 is for mod_webapp while 8009 is for mod_jk. Please fall back to 8008 and try again.... Your httpd.conf looks rights, but this line: WebAppDeploy ROOT warpConnection / I don't know if it can work and may cause error as I haven't try it before. To aviod any error introduced, you should remove this line until everything gets right. server.xml should work without any modification, so please use don't modify it and use the one from distribution. Hope that help. Punky ----- Original Message ----- From: "Donna Molinari" To: "'Punky Tse'" Cc: "Tomcat Developers List" ; "Donna Molinari" Sent: Tuesday, February 05, 2002 1:15 AM Subject: RE: Issues with Tomcat 4.0.1 and WebAppDeploy > Hello Punky, > > I tried this and I am unable to get to the manager, I get > > - HTTP Status 404 - /manager > > Now what? > > -----Original Message----- > From: Punky Tse [mailto:punkytse@yahoo.com] > Sent: Sunday, February 03, 2002 7:50 PM > To: Donna Molinari > Cc: Tomcat Developers List > Subject: Re: Issues with Tomcat 4.0.1 and WebAppDeploy > > > Donna, > > First, what does access_log and error_log say? Can you see "Web-application > not yet deployed" in error_log? > Second, can you reach http://papeete:88/manager/ ? > > Do you start Tomcat before httpd is started? Try this sequence. If you use > webapp-1.0.1 you will encounter such problem. > > Regards, > Punky > > > ----- Original Message ----- > From: "Donna Molinari" > To: "'Punky Tse'" > Cc: "Donna Molinari" ; "Tomcat Developers > List" > Sent: Saturday, February 02, 2002 12:34 AM > Subject: RE: Issues with Tomcat 4.0.1 and WebAppDeploy > > > > Hello Punky, > > > > Thank you for your response. I was able to get Tomcat and Apache working > > without no errors, but this is what happens now. It doesn't see the > examples > > under Tomcat's webapps directory. Is there something I need to add more > > to the httpd.conf file to point to the webapps directory that examples is > > the vitural URL? Like the Context directive: > > > > /examples/ /web/jakarta-tomcat-4.0.1/webapps/examples > > > > Tomcat Connection to Examples: http://papeete:8080/examples/ > > Apache Connection to Examples, fails with HTTP 404 : > > http://papeete:88/examples/ > > Apache Tomcat Connection to web_Info is Successful: > > http://papeete:88/webapp-info/ > > > > # > > # VirtualHost example: > > # Almost any Apache directive may go into a VirtualHost container. > > # The first VirtualHost section is used for requests without a known > > # server name. > > # > > WebAppConnection warpConnection warp papeete:8008 > > > > ServerAdmin donna.molinari@peregrine.com > > DocumentRoot "/web/jakarta-tomcat-4.0.1/webapps" > > ServerName papeete.remedy.com > > ErrorLog /web/apache1.3.23/var/log/error_log > > Transferlog /web/apache1.3.23/var/log/access_log > > > > WebAppDeploy manager warpConnection /manager > > WebAppDeploy examples warpConnection /examples > > WebAppDeploy ROOT warpConnection / > > WebAppInfo /webapp-info > > > > > > > > -----Original Message----- > > From: Punky Tse [mailto:punkytse@yahoo.com] > > Sent: Thursday, January 31, 2002 6:53 PM > > To: Tomcat Developers List > > Cc: Donna Molinari > > Subject: Re: Issues with Tomcat 4.0.1 and WebAppDeploy > > > > > > This line is wrong: > > WebAppDeploy /web/jakarta-tomcat-4.0.1/webapps/examples warpConnection > > /examples > > > > /web/jakarta-tomcat-4.0.1/webapps/examples is not a web application name. > It > > is a file location. Instead, > > > > WebAppDeploy examples warpConnection /examples > > > > should work. > > > > see the description from INSTALL.txt from mod_webapp: > > =================================================== > > WebAppDeploy [application name] [connection name] [url path] > > > > [application name] > > The application name as present in your "webapps" directory in > > Tomcat. For example, if you want to deploy a WAR-based web > > application, your application name will look something like > > "myApplication.war". > > =================================================== > > > > - Punky > > > > ----- Original Message ----- > > From: "Donna Molinari" > > To: > > Cc: "Donna Molinari" > > Sent: Friday, February 01, 2002 5:23 AM > > Subject: FW: Issues with Tomcat 4.0.1 and WebAppDeploy > > > > > > > > Hello Apache, > > > I really need someone help on the following problems and bugs found > > > when trying to use WebAppDeploy. The procedures caused syntax > > > errors, once syntax was fixed received the errors shown below. Attached > > > are my configuration files, I would appreciate someone letting me know > > > if you where successful in using the WARP Connector.... :-) > > > > > > > <> <> <> <> > > > > Subject: Apache 1.3.23 and Tomcat 4.0.1 > > > > > > > > How do I enter a bug on the following error. I am unable to get the > > > > WebAppDeploy > > > > working. Attached please see my configuration files - your > instructions > > > > caused > > > > syntax errors and now there errors after I fixed the syntax errors in > > the > > > > httpd.conf > > > > file. > > > > > > > > Apache error_log File > > > > [Wed Jan 30 18:09:04 2002] [notice] caught SIGTERM, shutting down > > > > [Wed Jan 30 18:09:34 2002] [error] Connection "warpConnection" cannot > > > > connect > > > > [Wed Jan 30 18:09:34 2002] [error] Cannot open connection > > "warpConnection" > > > > [Wed Jan 30 18:09:34 2002] [notice] Apache/1.3.23 (Unix) configured -- > > > > resuming normal operations > > > > [Wed Jan 30 18:09:34 2002] [notice] Accept mutex: fcntl (Default: > fcntl) > > > > [Wed Jan 30 18:09:34 2002] [error] Connection "warpConnection" cannot > > > > connect > > > > [Wed Jan 30 18:09:34 2002] [error] Cannot open connection > > "warpConnection" > > > > [Wed Jan 30 18:09:34 2002] [error] Connection "warpConnection" cannot > > > > connect > > > > [Wed Jan 30 18:09:34 2002] [error] Cannot open connection > > "warpConnection" > > > > [Wed Jan 30 18:09:34 2002] [error] Connection "warpConnection" cannot > > > > connect > > > > [Wed Jan 30 18:09:34 2002] [error] Cannot open connection > > "warpConnection" > > > > [Wed Jan 30 18:09:34 2002] [error] Connection "warpConnection" cannot > > > > connect > > > > [Wed Jan 30 18:09:34 2002] [error] Cannot open connection > > "warpConnection" > > > > > > > > > > > > _________ > > > > Take Care, > > > > Donna J. Molinari > > > > Solutions Group (WebQA) > > > > Platform Technologies Engineering > > > > Mid-Tier Performance Benchmark > > > > Peregrine Systems, Inc. > > > > Office: MTV3, Room #1396 > > > > Phone: 650-903-5204 > > > > Email: mailto:donna.molinari@peregrine.com > > > > > > > > > > > > > -------------------------------------------------------------------------- > -- > > ---- > > > > > > > -- > > > To unsubscribe, e-mail: > > > > > For additional commands, e-mail: > > > > > > > > _________________________________________________________ > > Do You Yahoo!? > > Get your free @yahoo.com address at http://mail.yahoo.com > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > -- > To unsubscribe, e-mail: > For additional commands, e-mail: _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- To unsubscribe, e-mail: For additional commands, e-mail: