Re: Tomcat - Apache - Jk

2005-06-09 Thread Anto Paul
On 6/9/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is it normal that Apache configured to relay jsp's to Tomcat doesn't write the contents of the page (jpeg, gif, css and others) in it's access log ? I've configured Apache to relay only .jsp and .do requests, how is it that the

Re: Tomcat/Apache/JK(2)?

2005-05-20 Thread Darryl Wilburn
The only change I made to httpd.conf was to add the line: Include C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\mod_jk.conf. (You can put the .conf file anywhere, you just have to tell Apache where it's located.) I did find that the HowTo instructions directed you to use

Re: Tomcat/Apache/JK(2)?

2005-05-20 Thread Tom Holmes Jr.
I have Tomcat 5.5.9 using JK to communicate with Apache 2.0.54 just fine. The workers.properties file is configured correctly, the httpd.conf is configured correctly, and I had to make a small change to server.xml to call my new site. This is all running on one Windows 2000 Server machine.

Re: Tomcat/Apache/JK(2)?

2005-05-19 Thread Darryl Wilburn
Tom, If you need them, I can send you my actual files. Although I encourage you to do all you can do on your own to figure it out. It'll pay huge dividends in the end if you understand what you had to do to make it work. DW --- Tom Holmes Jr. [EMAIL PROTECTED] wrote: I can't thank you enough.

Re: Tomcat/Apache/JK(2)?

2005-05-19 Thread Tom Holmes Jr.
I agree I should work with the files first to see if I can get it to work. I used the sample workers.properties file from Tomcat 5.5 in order to create my working workers,properties file.So, now when I restart Apache2, it doesn't complain and it looks like it is communicating with Tomcat

RE: Tomcat/Apache/JK(2)?

2005-05-18 Thread Didier McGillis
I too am a Apache/Tomcat/Modjk2 vet. I have begun looking at moving to Tomcat 5.5 and evaluating the need for Apache, as well as other connectors for Modjk2. One you can look at would be Apache Mod Proxy, apparently that has caught on as an excellent way to connect Apache to Tomcat. From:

Re: Tomcat/Apache/JK(2)?

2005-05-18 Thread Darryl Wilburn
Tom, I have Tomcat 5.5.7, Apache 2.0.54, JRE 1.5.0_03, JK 1.2.11, running on Win2k3 server with no problems. The biggest hurdle I had to get over was making the necessary changes on the sample files included with the software. (the worker names didn't match) The files required are mod_jk.so

Re: Tomcat/Apache/JK(2)?

2005-05-18 Thread Tom Holmes Jr.
I can't thank you enough. I was wondering if anyone had done it, and you certainly have. The sample files I have has always been the biggest hurdle for me also. The mod_jk.so I am using is mod_jk-1.2.13-apache-2.0.54.so which I think is for Windows. I'll refer to the same directions you

Re: Tomcat + Apache Web Server

2005-04-07 Thread Mike Millson
Well the Coyote connector for one definitely has compression available and compresses content nicely, even dynamic content. OK, I see this now. And I see that you can configure the MIME types you want to compress. Very good. I'm not sure of the specifics of the caching mechanisms used

RE: Tomcat + Apache Web Server

2005-04-06 Thread Pete Stevens
Consider the following Apache modules: mod_headers mod_expire mod_deflate I've never seen a web application that wouldn't benefit from one or all of these modules. And the performance improvements would likely more than outweigh any overhead. If Tomcat provides any of the functionality

RE: Tomcat + Apache Web Server

2005-04-06 Thread Mike Millson
On Wed, 2005-04-06 at 07:18, Pete Stevens wrote: Consider the following Apache modules: mod_headers mod_expire mod_deflate I've never seen a web application that wouldn't benefit from one or all of these modules. And the performance improvements would likely more than outweigh any

Re: Tomcat + Apache Web Server

2005-04-06 Thread Jason Bainbridge
On Apr 6, 2005 11:20 AM, Mike Millson [EMAIL PROTECTED] wrote: Every web application can benefit from compressing and caching static resources. It decreases the number of connections your server must handle. To not have caching, I think, is to ignore a best practice. Or at the very least

Re: Tomcat + Apache Web Server

2005-04-05 Thread Jorge Davila
You most configure mod_proxy in apache to get the configuration desired. The idea is that apache receive the request and if the request is for tomcat apache send the request at the respective servlet. http://httpd.apache.org/docs-2.0/mod/mod_proxy.html Best regards, Jorge Dvila. El mar,

RE: Tomcat + Apache Web Server

2005-04-05 Thread Caldarale, Charles R
From: Magnotta, Salvatore [mailto:[EMAIL PROTECTED] Subject: Tomcat + Apache Web Server Question: How can I have both Apache and Tomcat running on a Windows platform using Internet Explorer and do the following: Before introducing that complexity, why are you using Apache httpd at all?

RE: Tomcat + Apache Web Server

2005-04-05 Thread Magnotta, Salvatore
/servlet or something like this ? ...Thanks for the link. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 5:58 PM To: Tomcat Users List Subject: RE: Tomcat + Apache Web Server From: Magnotta, Salvatore [mailto:[EMAIL PROTECTED

RE: Tomcat + Apache Web Server

2005-04-05 Thread Jorge Davila
Are you suggesting that we can drop apache and only use tomcat in some cases? El mar, 05-04-2005 a las 16:58 -0500, Caldarale, Charles R escribi: From: Magnotta, Salvatore [mailto:[EMAIL PROTECTED] Subject: Tomcat + Apache Web Server Question: How can I have both Apache and Tomcat

RE: Tomcat + Apache Web Server

2005-04-05 Thread Magnotta, Salvatore
The solution is: ProxyRequests Off ProxyPass /servlet http://localhost:8080/servlet/ Thanks Jorge! -Original Message- From: Jorge Davila [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 4:57 PM To: Tomcat Users List Subject: Re: Tomcat + Apache Web Server You most configure

RE: Tomcat + Apache Web Server

2005-04-05 Thread Caldarale, Charles R
From: Jorge Davila [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat + Apache Web Server Are you suggesting that we can drop apache and only use tomcat in some cases? Certainly. Think of the overhead being _added_ by passing a request through httpd just to get to Tomcat. If the vast

RE: Tomcat + Apache Web Server

2005-04-05 Thread Mike Millson
On Tue, 2005-04-05 at 18:42, Caldarale, Charles R wrote: From: Jorge Davila [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat + Apache Web Server Are you suggesting that we can drop apache and only use tomcat in some cases? Certainly. Think of the overhead being _added_ by passing

Re: Tomcat, Apache connected in interesting way

2004-11-23 Thread Tim Funk
Nope. That is my prefered way to go. Let apache do what it does best. Let tomcat do what it does best. You'll notice that it'll also take longer before you need to add more tomcats in your cluster by doing this. What you need to be wary of are any security issues where some static assets need

Re: Tomcat, Apache connected in interesting way

2004-11-23 Thread Matt Bathje
Joshua Szmajda wrote: Hi all, I run a pretty high traffic site using Tomcat. We've gone through a number of configurations in the past, and I wanted to share with you the newest setup that we're using. It's a bit unorthodox perhaps, and I was wondering if anyone could think of possible

Re: Tomcat, Apache connected in interesting way

2004-11-23 Thread Joshua Szmajda
Both are on the same server, yes. They are however listening on different IP addresses. If needed, you could set the tomcat http connector to listen on a different port and adjust the rewrite rule accordingly. As far as SSL goes, the SSL encryption will be in place from the client to apache,

RE: tomcat/apache problem when using ssl

2004-11-02 Thread Goldman, Stephen CIV SWRMC
I'm experiencing the same problem. The issue is that microsoft (article Q316431) will not display a file from a SSL site if the cache is set to no-cache. It seems that Tomcat automatically generates a Contect-Type header that includes this parameter. I have not yet found out how to change

RE: tomcat/apache problem when using ssl

2004-11-02 Thread Nandish Rudra
-Original Message- From: Goldman, Stephen CIV SWRMC [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 1:51 PM To: Tomcat Users List Subject: RE: tomcat/apache problem when using ssl I'm experiencing the same problem. The issue is that microsoft (article Q316431) will not display

Re: Tomcat - Apache with JK2: mapping urls...

2004-10-18 Thread Johann Uhrmann
Andrzej Jan Taramina wrote: Douglas WF Acheson has said late last year: # Define the Manager proxy that comes with Tomcat [uri:/tomcat/manager/*] context=/manager info=Manager prefix mapping But, after frustrating attempts I cannot seem to get it correct. I have search the mail archives and a

RE: Tomcat - Apache with JK2: mapping urls...

2004-10-18 Thread Cox, Charlie
in place of the workers2.properties [uri: mappings Charlie -Original Message- From: Johann Uhrmann [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 9:58 AM To: Tomcat Users List Subject: Re: Tomcat - Apache with JK2: mapping urls... Andrzej Jan Taramina wrote: Douglas WF

Re: Tomcat-Apache and SSL- Re-Post

2004-09-14 Thread Bill Barker
Barker Sent: Sunday, September 12, 2004 1:12 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat-Apache and SSL- Re-Post If 8000 is the Apache port, then use request.getLocalPort(). If 8000 is the AJP port, it can't be done. Wade Billings [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED

RE: Tomcat-Apache and SSL- Re-Post

2004-09-14 Thread Wade Billings
Thank you for the suggestion, I will try this tomorrow and post the results. Cheers, Q. Wade Billings -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Tuesday, September 14, 2004 7:27 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat-Apache and SSL- Re

RE: Tomcat-Apache and SSL- Re-Post

2004-09-13 Thread Wade Billings
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Sunday, September 12, 2004 1:12 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat-Apache and SSL- Re-Post If 8000 is the Apache port, then use request.getLocalPort(). If 8000 is the AJP port, it can't be done. Wade Billings [EMAIL PROTECTED

Re: Tomcat-Apache and SSL- Re-Post

2004-09-12 Thread Bill Barker
If 8000 is the Apache port, then use request.getLocalPort(). If 8000 is the AJP port, it can't be done. Wade Billings [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Here is a fun one for ya all... We recently decided to migrate from a Jrun/Apahe platform to an Apache2.0/Tomcat5.0

RE: Tomcat + Apache + SSL

2004-07-01 Thread Lee, Paul NYC
http://jakarta.apache.org/tomcat/connectors-doc/jk2/index.html -Original Message- From: Lorenzo A. Jimenez Briceno [mailto:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 1:13 PM To: Tomcat Users List Subject: Tomcat + Apache + SSL Importance: High Hi, Where can I find info about

RE: Tomcat + Apache + SSL

2004-07-01 Thread Lorenzo A. Jimenez Briceno
Thanks. -Mensaje original- De: Lee, Paul NYC [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 01 de Julio de 2004 11:30 a.m. Para: 'Tomcat Users List' Asunto: RE: Tomcat + Apache + SSL http://jakarta.apache.org/tomcat/connectors-doc/jk2/index.html -Original Message- From: Lorenzo

RE: Tomcat + Apache + SSL

2004-07-01 Thread Casas, Claudia
:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 2:41 PM To: Tomcat Users List Subject: RE: Tomcat + Apache + SSL Importance: High Thanks. -Mensaje original- De: Lee, Paul NYC [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 01 de Julio de 2004 11:30 a.m. Para: 'Tomcat Users List' Asunto

RE: Tomcat + Apache + SSL

2004-07-01 Thread Lorenzo A. Jimenez Briceno
Thanks Claudia, Do you know about TC5 and A2 -Mensaje original- De: Casas, Claudia [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 01 de Julio de 2004 02:48 p.m. Para: Tomcat Users List Asunto: RE: Tomcat + Apache + SSL I followed John Turner's Web page: http://johnturner.com/howto

RE: Tomcat + Apache + SSL

2004-07-01 Thread Casas, Claudia
: Lorenzo A. Jimenez Briceno [mailto:[EMAIL PROTECTED] Sent: Thursday, July 01, 2004 3:46 PM To: Tomcat Users List Subject: RE: Tomcat + Apache + SSL Importance: High Thanks Claudia, Do you know about TC5 and A2 -Mensaje original- De: Casas, Claudia [mailto:[EMAIL PROTECTED] Enviado el: Jueves

RE: Tomcat , APache , Jserv

2004-04-19 Thread Ralph Einfeldt
- Tomcat is a servlet and jsp engine. - Tomcat can be used as a stand alone webserver - Apache is a webserver (with different features than tomcat, if it is better depends on the requirements) - Apache can be integrated with tomcat by mod_jk[2] (So Apache replaces tomcats own http stack)

RE: Tomcat , APache , Jserv

2004-04-19 Thread birendar . waldiya
: Tomcat , APache , Jserv - Tomcat is a servlet and jsp engine. - Tomcat can be used as a stand alone webserver - Apache is a webserver (with different features than tomcat, if it is better depends on the requirements) - Apache can be integrated with tomcat by mod_jk[2] (So Apache

Re: Tomcat/Apache: error creating shm

2004-03-27 Thread Robert Mazur
On Friday 26 March 2004 23:18, Robert Mazur wrote: I am running into an error when launching tomcat: shm.create(): error creating shm 70014 End of file found I have set up the coyote connector on the following system: -SUSE9 -Apache 2.0.49 -Tomcat 5.0.19

Re: Tomcat/Apache Port Settings

2004-03-24 Thread Michael Kastner
Hello Neil, under regular circumstances the HTTP server port should be set to listen on port 80. So you might want to change this setting in your httpd.conf file. Pretty much at the start of your httpd.conf file there should be a line like this: Listen *:80 or in your case Listen *:8080

Re: Tomcat Apache connector not working

2004-03-19 Thread Allan Bruce
Allan, the problem lies with the link-edit while building the mod_jk2.so module. The Makefile produced in the some_path/native2/server/apache2/ is buggy. There is some important libraries missing in the list. Also, I believe the configure is not checking everything properly. All prereqs

Re: Tomcat Apache connector not working

2004-03-19 Thread Daniel Savard
Le ven 19/03/2004 à 05:11, Allan Bruce a écrit : I used an rpm to install the connector. Do you suggest I uninstall the rpm and compile the source? Thanks Allan Before you may do the following check: Locate the mod_jk2.so file and issue the following command: ldd mod_jk2.so It will

Re: Tomcat Apache connector not working

2004-03-19 Thread Allan Bruce
- Original Message - From: Daniel Savard [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, March 19, 2004 3:27 PM Subject: Re: Tomcat Apache connector not working Le ven 19/03/2004 à 05:11, Allan Bruce a écrit : I used an rpm to install the connector. Do

Re: Tomcat Apache connector not working

2004-03-19 Thread Daniel Savard
Le ven 19/03/2004 à 12:30, Allan Bruce a écrit : My output is: [EMAIL PROTECTED] apache2]# ldd mod_jk2.so libc.so.6 = /lib/i686/libc.so.6 (0x4003) /lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000) is this a problem? I am quite new to linux so I dont know much

Re: Tomcat Apache connector not working

2004-03-18 Thread Daniel Savard
Le jeu 18/03/2004 à 06:27, Allan Bruce a écrit : I have apache and tomcat both up and running. Now I want to be able to set up a connector so that I can browse the 'examples' directory of the tomcat installation through apaches port. The below config doesnt seem to work, can somebody please

RE: Tomcat, Apache, JK/JK2, mod_backhand

2004-02-10 Thread Krell, Andrew
This is the link to the Jakarta FAQ that answers the question which connector should I use? http://jakarta.apache.org/tomcat/faq/connectors.html#vs Good luck -Andrew -Original Message- From: Pete Stokes [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 3:06 PM To: Tomcat Users

RE: Tomcat / Apache / SSl

2004-01-13 Thread johncoyle
Software: Apache - 2.0.48 Tomcat - 4.1.29 OpenSSL - 0.9.6l [engine] 04 Nov 2003 Hi, I am trying to encrypt all data being transmitted from the client pc to the webserver, and also from the webserver to tomcat. I have only been working on tomcat for a couple of months but have experience on

RE: Tomcat / Apache / SSl

2004-01-13 Thread Oscar Carrillo
You will use the same connector over port 8009. No additional connector needed over any other port. In your ssl.conf for apache, you will create a VirtualHost entry very much like the one that's in your httpd.conf file. In there you will do your JkMount declaratives, etc. BTW, I use 0.9.7c

Re: Tomcat-Apache vs. Jrun-Iplanet

2004-01-09 Thread Tim Funk
1) Look at the Tomcat Coyote connectors. 2) Look at raw apache performace (like a 1 pixel gif) - and make sure that this test works fast before adding tomcat into the mix -Tim Chris Boyce wrote: We are in the process of trying to migrate from a JRun 3.1/IPlanet environment to Tomcat 4.1.29 and

RE: Tomcat-Apache Security

2003-12-17 Thread Shapira, Yoav
Howdy, Maybe google or a book like this: http://www.programming123.com/detail/apache/apache_1861008309.html In the future, you might want to think about security before setting up a production environment ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Joaquin

RE: Tomcat-Apache Security

2003-12-17 Thread Pitre, Russell
To: Tomcat Users List Subject: RE: Tomcat-Apache Security Howdy, Maybe google or a book like this: http://www.programming123.com/detail/apache/apache_1861008309.html In the future, you might want to think about security before setting up a production environment ;) Yoav Shapira Millennium ChemInformatics

Re: tomcat + apache - reg

2003-12-06 Thread Ben Souther
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html On Friday 05 December 2003 11:52 pm, you wrote: I am Sudhakar. S working with Pace Automation Limited. We are running our web server using tomcat apache configuration using jk_mod(Linux Advanced server 2.1) we are having

Re: tomcat apache connection problem

2003-10-21 Thread javaerick
Dear friends, I am up with the task of configuring tomcat and apache in linux environment.I had the problem that i explained below.I am yet to see some response to it.please gurus,do help me. thanks and regards. thanks and regards sat NB:- refer to the below post for the problem.

Re: Tomcat + Apache + SSL

2003-09-23 Thread Sean Bruton
You can use mod_rewrite in Apache. It's been a while but I believe something such as this in your httpd.conf should do the trick: RewriteEngine On RewriteRule ^/securecontext(.*) https://servername/securecontext$1 [R] I may be off a bit, so check the docs at:

RE: Tomcat + Apache + SSL

2003-09-23 Thread Robert D. Abernethy IV
Message- From: Sean Bruton [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 2:07 PM To: Tomcat Users List Subject: Re: Tomcat + Apache + SSL You can use mod_rewrite in Apache. It's been a while but I believe something such as this in your httpd.conf should do the trick: RewriteEngine

Re: Tomcat + Apache + SSL

2003-09-23 Thread Bill Barker
Where is Tim when you need him ;-). http://jakarta.apache.org/tomcat/faq/security.html#https Robert D. Abernethy IV [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I have apache set up to redirect requests for a specific context to Tomcat. I am curious if there is a way to force all

Re: tomcat apache SSL

2003-09-02 Thread Bill Barker
My first guess is that you are running a version 4.1.27. If so, you should see all sorts of errors in your Tomcat logs telling you what didn't work. If you want to know why earlier version don't work, search the archives or bugzilla. Elif Akten [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: tomcat+apache

2003-07-21 Thread John Turner
mod_jk.conf is included into httpd.conf. If you make your changes in mod_jk.conf, they are included by default in httpd.conf. There is no need to make them twice. My HOWTO covers everything step-by-step, I really can't think of a way to describe what's needed any better:

Re: tomcat+apache

2003-07-20 Thread frankie
Dear John, you mean i need try to edit the mod_jk.conf? but i remember that it so need to define another virtual host in Apache's httpd.conf?? so what i need to do now?i am very new in Linux...HELP ME!! Frankie You mean aside from the extensive documentation available at the Apache site

Re: tomcat+apache

2003-07-18 Thread Samuel Le Berrigaud
I think you have only one virtual host in your Tomcat server.xml file Host name=localhost debug=0 appBase=webapps unpackWARs=true autoDeploy=true /Host you should add one with the name coresponding with your IP address like : Host name=10.0.0.1 debug=0 appBase=webapps unpackWARs=true

Re: tomcat+apache

2003-07-18 Thread John Turner
That's only half the solution, you'll also need to define another virtual host in Apache's httpd.conf. John On Fri, 18 Jul 2003 10:41:16 +0200, Samuel Le Berrigaud [EMAIL PROTECTED] wrote: I think you have only one virtual host in your Tomcat server.xml file Host name=localhost debug=0

Re: tomcat+apache

2003-07-18 Thread frankie
then how to define the virtual host in apache?any example? That's only half the solution, you'll also need to define another virtual host in Apache's httpd.conf. John On Fri, 18 Jul 2003 10:41:16 +0200, Samuel Le Berrigaud [EMAIL PROTECTED] wrote: I think you have only one virtual

Re: tomcat+apache

2003-07-18 Thread John Turner
You mean aside from the extensive documentation available at the Apache site (http://httpd.apache.org/docs-2.0/vhosts/)? You could try here: http://www.johnturner.com/howto/mod_jk_conf.html John On Fri, 18 Jul 2003 20:52:37 +0800, frankie [EMAIL PROTECTED] wrote: then how to define the

Re: tomcat+apache

2003-07-18 Thread Simon Pabst
If the 404 error comes from Apache your JkMount doesn't work properly (for 10.0.0.1) Look for errors in mod_jk.log or error_log. Also try putting a proper ServerName in httpd.conf (http://httpd.apache.org/docs/mod/core.html#servername) and set UseCanonicalName off

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread John Turner
If you consider localhost to be a VirtualHost (it is), then the HOWTOs should be OK. If you need more info, this may help: http://marc.theaimsgroup.com/?l=tomcat-userm=105778185321556w=2 The only thing I would change from my post earlier this month is that I would setup a separate director

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread Juan Nin
From: John Turner [EMAIL PROTECTED] If you consider localhost to be a VirtualHost (it is), then the HOWTOs should be OK. If you need more info, this may help: http://marc.theaimsgroup.com/?l=tomcat-userm=105778185321556w=2 The only thing I would change from my post earlier this month is

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread Juan Nin
From: John Turner [EMAIL PROTECTED] The only thing I would change from my post earlier this month is that I would setup a separate director for each host that is not under CATALINA_HOME/webapps. what's the concept of director? is there any advantage or something between having your apps

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread John Turner
Typo. director = directory The problem with having multiple webapps for multiple virtual hosts all under CATALINA_HOME/webapps is that things get a little messy. For example, say you have two virtual hosts, host1 and host2. You have two apps, app1 and app2. So, you expect something like

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread Juan Nin
From: John Turner [EMAIL PROTECTED] Typo. director = directory oh, ok, I thought maybe it was a typo :) The problem with having multiple webapps for multiple virtual hosts all under CATALINA_HOME/webapps is that things get a little messy. yes, I thought of that.. If you put app1 and

Re: Tomcat + Apache + mod_jk HOWTO

2003-07-16 Thread John Turner
If its working for you as you need and expect, its OK. John On Wed, 16 Jul 2003 17:57:48 -0300, Juan Nin [EMAIL PROTECTED] wrote: From: John Turner [EMAIL PROTECTED] Typo. director = directory oh, ok, I thought maybe it was a typo :) The problem with having multiple webapps for multiple

Re: Tomcat/Apache and mod_jk2

2003-07-15 Thread Simon Pabst
mod_jk2 needs Apache APR libraries to work. These aren't included with Apache 1.x, only Apache 2.x - The easier thing to build mod_jk2 is to do it with Apache 2, - However you could also download and build the Apache APR libraries (http://www.apache.org/dist/apr/) and then build mod_jk2 with

RE: Tomcat/Apache and mod_jk2

2003-07-15 Thread Daniel Herbison
Thank you I'll give that a try. -Original Message- From: Simon Pabst [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 15, 2003 5:08 PM To: Tomcat Users List Subject: Re: Tomcat/Apache and mod_jk2 mod_jk2 needs Apache APR libraries to work. These aren't included with Apache 1.x, only

RE: Tomcat-Apache JSP compile error

2003-07-04 Thread Atreya Basu
Okay, I looked at this and it seems to be an Ant script problem. It appears as if Ant can't find the javac executable. I know that this is a common problem because I've found some discussion about it on the Tomcat website. The thing is it almost seems that this problem hits only some people.

Re: Tomcat-Apache JSP compile error

2003-07-04 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/misc.html#compile -Tim Atreya Basu wrote: Hello, I'm having a problem compiling JSPs dynamically when using mod_jk2. When I change a JSP file and try to access it I get the following error: org.apache.jasper.JasperException: Unable to compile class for JSP

RE: Tomcat-Apache JSP compile error

2003-07-04 Thread Atreya Basu
(at) greenfieldresearch (dot) ca -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: July 4, 2003 9:04 AM To: Tomcat Users List Subject: Re: Tomcat-Apache JSP compile error http://jakarta.apache.org/tomcat/faq/misc.html#compile -Tim Atreya Basu wrote: Hello, I'm having

Re: tomcat/apache systems consultant available now?

2003-07-03 Thread David Rees
sander-martijn said: sorry for posting this but i'm not sure what else to do at this point. i'm desparately seeking help with the issue i posted earlier on this list under the subject Integration problems: tomcat 4.1, apache 1.3.x mod_jk (ajp13). since i haven't received a response and am

Re: tomcat/apache systems consultant available now?

2003-07-03 Thread David Rees
David Rees said: sander-martijn said: sorry for posting this but i'm not sure what else to do at this point. i'm desparately seeking help with the issue i posted earlier on this list under the subject Integration problems: tomcat 4.1, apache 1.3.x mod_jk (ajp13). since i haven't received

Re: Tomcat + Apache Problem

2003-06-27 Thread John Turner
What Tomcat version? For version 4.1.x, See my Win2K/XP HOWTO: http://www.johnturner.com/howto John On Thu, 26 Jun 2003 21:13:32 +0200, David Herranz [EMAIL PROTECTED] wrote: Hello, I trying to integrate Tomcat into the Apache server, but i need the file tomcat-Apache.conf, I read in some

Re: Tomcat + Apache Problem

2003-06-26 Thread Bill Barker
There hasn't been a tomcat-Apache.conf as long as I've been hanging out here. If you can give the versions on (especially) Tomcat, and Apache, you might get more help. David Herranz [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I trying to integrate Tomcat

Re: Tomcat, Apache, and SSL

2003-06-13 Thread Bill Barker
You should be taking a different approach. Using mod_jk will handle the secure problem better. However, I believe that 4.1.25 will work with your config. Eric Northam [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] What is the appropriate way to setup Apache to handle SSL and act as

Re: Tomcat/ Apache startup

2003-06-06 Thread John Turner
What is your script trying to do? Start all of them? That's not the optimal configuration. You should really have 3 scripts, one for each. Start them up in sequence in rc3-5.d. MySQL, then Tomcat, then Apache. Connection refused generally means that something is already started on that

RE: Tomcat/ Apache startup

2003-06-06 Thread David Nelson
-Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 2:37 PM To: Tomcat Users List Subject: Re: Tomcat/ Apache startup What is your script trying to do? Start all of them? That's not the optimal configuration. You should really have 3 scripts

RE: Tomcat/ Apache startup

2003-06-06 Thread Mark Eggers
David, I don't know about Redhat 7.3, but the default configuration in Redhat 9 restricts user noone and nobody so that network access does not work. I am using similar scripts, but installed Tomcat from the binaries and made two users. 1. tomcat is a normal user and has rw access to the

Re: Tomcat/ Apache startup

2003-06-06 Thread John Turner
;; esac exit $RETVAL -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 2:37 PM To: Tomcat Users List Subject: Re: Tomcat/ Apache startup What is your script trying to do? Start all of them? That's not the optimal configuration. You should

RE: Tomcat/ Apache startup

2003-06-06 Thread David Nelson
, 2003 3:01 PM To: Tomcat Users List Subject: RE: Tomcat/ Apache startup David, I don't know about Redhat 7.3, but the default configuration in Redhat 9 restricts user noone and nobody so that network access does not work. I am using similar scripts, but installed Tomcat from the binaries and made

RE: Tomcat/ Apache startup

2003-06-06 Thread David Nelson
- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 3:02 PM To: Tomcat Users List Subject: Re: Tomcat/ Apache startup My guess is that Tomcat isn't starting, because the convention is to use CATALINA_HOME, not TOMCAT_HOME, which means that TOMCATHOME=$TOMCAT_HOME will make

RE: Tomcat/ Apache startup

2003-06-06 Thread Mark Eggers
David, I am using the scripts from: http://daydream.stanford.edu/tomcat/install_web_services.html I modified them slightly, including using sudo -u tomcat-ops for the Tomcat startup script. These scripts take care of setting the appropriate environment variables before starting, stopping, or

RE: Tomcat/ Apache startup

2003-06-06 Thread David Nelson
: Mark Eggers [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 3:32 PM To: Tomcat Users List Subject: RE: Tomcat/ Apache startup David, I am using the scripts from: http://daydream.stanford.edu/tomcat/install_web_services.html I modified them slightly, including using sudo -u tomcat-ops

Re: Tomcat / Apache / JK2 impossible??

2003-05-31 Thread John Turner
installables for these -Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 1:24 PM To: Tomcat Users List Subject: Re: Tomcat / Apache / JK2 impossible?? It is very possible, many of us are doing it as we speak... Check out: http://www.johnturner.com

Re: Tomcat / Apache / JK2 impossible??

2003-05-30 Thread Vincent J. Buonassisi
. I had been doing all LIKE they say. But don't work. Help me please. :-( - Original Message - From: Jason Bainbridge [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, May 29, 2003 9:53 AM Subject: Re: Tomcat / Apache / JK2 impossible?? It is very possible, many of us

Re: Tomcat / Apache / JK2 impossible??

2003-05-30 Thread David Reche Martinez
: Re: Tomcat / Apache / JK2 impossible?? try putting the following line in your workers2.properties: [shm] file=/etc/httpd/logs/shm.file size=1048576 On Giovedì, mag 29, 2003, at 03:27 US/Pacific, David Reche Martinez wrote: Hi again, Your first link don't tell anything about jk2

Re: Tomcat / Apache / JK2 impossible??

2003-05-29 Thread Jason Bainbridge
It is very possible, many of us are doing it as we speak... Check out: http://www.johnturner.com/howto/apache-tomcat-howto.html and http://tomcatfaq.sourceforge.net Then go from there, if you still have problems then let us know. Regards, -- Jason Bainbridge KDE Web Team - http://kde.org

RE: Tomcat / Apache / JK2 impossible??

2003-05-29 Thread Joe
-Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 3:54 PM To: Tomcat Users List Subject: Re: Tomcat / Apache / JK2 impossible?? It is very possible, many of us are doing it as we speak... Check out: http://www.johnturner.com/howto/apache

RE: Tomcat / Apache / JK2 impossible??

2003-05-29 Thread deepa_narayanan
List Subject: Re: Tomcat / Apache / JK2 impossible?? It is very possible, many of us are doing it as we speak... Check out: http://www.johnturner.com/howto/apache-tomcat-howto.html and http://tomcatfaq.sourceforge.net Then go from there, if you still have problems then let us know. Regards

Re: Tomcat / Apache / JK2 impossible??

2003-05-29 Thread David Reche Martinez
: Thursday, May 29, 2003 9:53 AM Subject: Re: Tomcat / Apache / JK2 impossible?? It is very possible, many of us are doing it as we speak... Check out: http://www.johnturner.com/howto/apache-tomcat-howto.html and http://tomcatfaq.sourceforge.net Then go from there, if you still have

RE: Tomcat+apache+reload application

2003-03-25 Thread Krzysztof Janiszewski
Hi! The Warp Connection doesn't refresh the connections. So, if you put a new servlet or even upload a new version of an existing servlet, the connection between Apache and Tomcat is lost. But you don't have to restart Tomcat, just Apache. Is it the only solution? It is hard to restart

RE: Tomcat/Apache Connector does not work?

2003-03-19 Thread Marion McKelvie
Sylvia Have you set up the context for the examples in the mod_jk.conf file? Apache needs to know to send port 80 requests to Tomcat for this context. Marion -Original Message- From: Wey Hueymeei [mailto:[EMAIL PROTECTED] Sent: 19 March 2003 17:07 To: [EMAIL PROTECTED] Subject:

Re: Tomcat/Apache Connector does not work?

2003-03-19 Thread Wey Hueymeei
Marion, No I didn't. Isn't mod_jk.conf automatically generated everytime tomcat starts? Should I edit it? I found the following line in my server.xml !-- Tomcat Root Context -- !-- Context path= docBase=ROOT debug=0/ -- !-- Tomcat Examples Context --

RE: Tomcat/Apache Connector does not work?

2003-03-19 Thread Jackson, Stephen
Some step-by-step instructions. http://raibledesigns.com/tomcat/index.html -Original Message- From: Wey Hueymeei [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 12:36 PM To: Tomcat Users List Subject: Re: Tomcat/Apache Connector does not work? Marion, No I didn't. Isn't

Re: Tomcat/Apache Connector does not work?

2003-03-19 Thread wfung
I just got the same problem and posted the same question to the user-group! I hope someone would answer that, William Fung Unix Product Architect Castel Inc. Phone: 978-236-1000 x604 Email: [EMAIL PROTECTED] Wey Hueymeei [EMAIL PROTECTED] 03/19/2003 12:06 PM Please respond to Tomcat Users

RE: Tomcat/Apache Connector does not work?

2003-03-19 Thread Marion McKelvie
/WEB-INF/ AllowOverride None deny from all /Location -Original Message- From: Wey Hueymeei [mailto:[EMAIL PROTECTED] Sent: 19 March 2003 17:36 To: Tomcat Users List Subject: Re: Tomcat/Apache Connector does not work? Marion, No I didn't. Isn't mod_jk.conf automatically generated

  1   2   3   4   >