Re: startup.sh not recognized

2001-12-27 Thread Jan Labanowski
Try chmod 755 startup.sh and change the first line to #!/bin/sh if it is not On Thu, 27 Dec 2001, Michael Burke wrote: When I try to run startup.sh I get a no such file or directory message. I've tried to run it as root and user with the same result. I try to start it as

Re: HTTP and HTTPS on two servers...

2001-12-20 Thread Jan Labanowski
Check up some old write-ups on: http://www.ccl.net/cca/software/UNIX/apache/index.shtml But I am afraid you are out of luck. If you create a virtual host for port 443 in Apache's httpd.conf and put the connector statements there (check the URLS above), Apache will be doing SSL and Apache will

Re: tar checksum error

2001-12-20 Thread Jan Labanowski
You have to use GNU tar. If you do not have GNU tar, get the zip package and unpack with jar xvf tomcatx.zip On Thu, 20 Dec 2001, Sheth, Niraj wrote: Hi, I just downloaded 4.0.1 and trying to install it on SunOS 5.6. gzip -cd jakarta-tomcat-4.0.1.tar.gz | tar -xvf - gives me

Re: AW: Classloader question

2001-12-19 Thread Jan Labanowski
Rename zip to jar and put it in lib Jan On Wed, 19 Dec 2001, David Morsberger wrote: I ran into a similar problem today that I can not explain while upgrading to tomcat 3.3. The JSP we created accesses a bean that uses the oracle 1.2 JDBC driver, classes12.zip. I placed the Oracle

Re: starting as root but then running as TOMCAT_USER

2001-12-14 Thread Jan Labanowski
There is another way (there always is...). People do not seem to appreciate that this is not a problem if you want to spend $30 or something on some old 100MHz Pentium PC in a surplus store in an el chipo computer store (or go to surplus of some University). You can install Linux on this,

Re: Help needed

2001-09-25 Thread Jan Labanowski
Start from going to: http://www.google.com and type in: tomcat apache configure and hit return. Jan On Tue, 25 Sep 2001 [EMAIL PROTECTED] wrote: Hello All, I appologize for my lack of knowledge as I am new to this Apache-Tomcat stuff. My problem is that I need to run Apache with

Re: Getting Tomcat's Port# in Servlet (using mod_jk)

2001-09-13 Thread Jan Labanowski
From what I know, you cannot, but you can put the ports in the context parameters in web.xml and get these parameters from within servlets and JSP. context-param param-nameconnectorPort/param-name param-value8007/param-value /context-param which you can retrieve from a servlet by

RE: Getting Tomcat's Port# in Servlet (using mod_jk)

2001-09-13 Thread Jan Labanowski
worker is handling it. Port# was the first thought as a unique identifier; anything else I could use ?? regards, Tony -Original Message- From: Jan Labanowski [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 12:17 PM To: [EMAIL PROTECTED]; Jan Labanowski; [EMAIL

Re: Multiple Tomcat workers (using mod_jk)

2001-09-12 Thread Jan Labanowski
I am not the developer, so I do not know... But this is what I think: The workers are different instances of Tomcat, and can reside even on different machines, i.e., obviously they run under different VMs At the same time, the load balancing worker should send the request which belong to the same

Re: mod_jk required for apache/tomcat/SSL?

2001-08-27 Thread Jan Labanowski
Try http://www.ccl.net/cca/software/UNIX/apache/index.shtml You may need to put the same stuff you have under default port 80 inside the block for virtual host 443 in httpd.conf On Mon, 27 Aug 2001, Amthauer, Heiner wrote: Hi there! I want to use tomcat togehter with apache+mod_ssl.

Re: Tomcat 3.2.2 stalls on Solaris

2001-08-20 Thread Jan Labanowski
Did you apply Solaris patches before installing JDK 1.3.1 ? There are several Solaris patches to fix threading problems. Check the patches tar file which comes with 1.3.1 and then list installed patches, and see if you are up to date... Jan P.S., Of course it can me a zillion other things...

Re: Why and How Tomcat before Apache?

2001-08-17 Thread Jan Labanowski
Before you dwelve into connecting Tomcat and Apache, you need to know what is the TCP socket, and what is TCP server and TCP client. In the case of connection mod_jk connector between Apache and Tomcat, Tomcat is the TCP server and Apache is the TCP client. And for this to work nicely, you need

RE: Why and How Tomcat before Apache?

2001-08-17 Thread Jan Labanowski
On Fri, 17 Aug 2001, Li, Jerry wrote: Hi, All: Your help is highly appreciated for the following questions. 1. Does Tomcat have web-based administration functionality? We want to let the Tomcat administrator start/stop Tomcat through a Web-based interface. I have searched the mail

Re: Multiple servlets using same initParameters

2001-08-14 Thread Jan Labanowski
In web.xml: context-param param-nameopen-port/param-name param-value7180/param-value descriptionPort for regular HTTP via Apache/description /context-param context-param param-namesecure-port/param-name param-value7143/param-value descriptionPort for HTTPS via Apache/description

Re: Antwort: Re: Newbie: Apache Tomcat mod_jk Virtual Hosts

2001-08-13 Thread Jan Labanowski
Labanowski An: [EMAIL PROTECTED] [EMAIL PROTECTED]Kopie: Jan Labanowski [EMAIL PROTECTED

Re: Restarting Tomcat/Apache

2001-08-13 Thread Jan Labanowski
You have to have the ajp12 instantiated in server.xml file just for shutdown, even if you do not use it in workers.properties Just copy the ajp13 connector stuff and change ajp12 - ajp13 It usually helps... On Mon, 13 Aug 2001, Simon Hardingham wrote: Hi, I am having problems restarting

Re: Apache Tomcat mod_jk

2001-08-13 Thread Jan Labanowski
You need to do some reading. Usually, apache runs on port 80 Usually, tomcat web server runs on port 8080 (of course, you can change it) If you get to Tomcat via apache, you should be able to do http://my.machine/examples and see tomcat examples. If you do not see them, your connector (mod_jk)

Re: Trouble running a servlet

2001-08-13 Thread Jan Labanowski
Try http://localhost:8080/servlet/MyServletClass assuming that your class is in $TOMCAT_HOME/webapps/ROOT/WEB-INF/classes/MyServletClass.class On Mon, 13 Aug 2001, Kenneth Litwak wrote: I'm trying to run a basic servlet tutorial using tomcat on Win 2000 with Netscape. It doens't work.

Re: Newbie: Apache Tomcat mod_jk Virtual Hosts

2001-08-12 Thread Jan Labanowski
://my.machine.com/examples and http://my.machine.com/jspwebapps (assuming that your appache listens to html on port 80). Jan Orlando Jan Labanowski wrote: On Sat, 11 Aug 2001 [EMAIL PROTECTED] wrote: I am trying to get tomcat to work according to the tomcat-apache-howto: I

Re: Newbie: Apache Tomcat mod_jk Virtual Hosts

2001-08-12 Thread Jan Labanowski
On Sun, 12 Aug 2001 [EMAIL PROTECTED] wrote: Can you tell what the following means: [jk_uri_worker_map.c (345)]: Into jk_uri_worker_map_t::map_uri_to_worker [jk_uri_worker_map.c (435)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match Orlando If you are using Tomcat

RE: Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14? / To mcat 3.2.1

2001-08-01 Thread Jan Labanowski
. Try it... But again, you should compile it yourself... -Mensaje original- De: Jan Labanowski [mailto:[EMAIL PROTECTED]] Enviado el: miercoles, 01 de agosto de 2001 16:41 Para: '[EMAIL PROTECTED]' Asunto: Re: Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14

How smart...

2001-06-05 Thread Jan Labanowski
Do you think you are smart? On Tue, 5 Jun 2001, Johnathan Smith wrote: PLEASE TAKE ME OFF THIS LIST!!! --- Wolle [EMAIL PROTECTED] wrote: Hello, try to set the MySession.setMaxInteracticeInterval(sec), for me it works so. Greetings, Wolle Hervé Guidetti wrote:

Re: tomcat process dies out... (fwd)

2001-05-29 Thread Jan Labanowski
The commands can also look like: Under /bin/sh, /bin/ksh, /bin/bash, etc: nohup ./startup.sh -f server_1.xml /tmp/mytomcat.log 21 This means: nohup -- do not kill process on terminal interrupt file -- redirect STDOUT to file 21 -- join STDERR(2) with STDOUT (1) put to

Re: tomcat process dies out...

2001-05-28 Thread Jan Labanowski
The commands can also look like: Under /bin/sh, /bin/ksh, /bin/bash, etc: nohup ./startup.sh -f server_1.xml /tmp/mytomcat.log 21 Under /bin/csh or /bin/tcsh nohup ./startup.sh -f server_1.xml ! Jan [EMAIL PROTECTED] On Mon, 28 May 2001, Krishna Kishore Thotakura wrote: It still

Re: Is there A Guide to Setting Up Apache Tomcat on Linux Anywhereon the Web?

2001-05-24 Thread Jan Labanowski
Did you try to go to, say: http://www.goohle.com and search for: Apache Tomcat Linux Tell us what you found... Jan On Thu, 24 May 2001 [EMAIL PROTECTED] wrote: I've been struggling to get Apache Tomcat running on Linux. Can anyone point me to a web-based guide (hopefully PDF) to doing

RE: Tomcat interferes with CGI operation

2001-05-24 Thread Jan Labanowski
More things should also be known... What user id is Apache runnning, and what UID is tomcat. If Tomcat is root and Apache is nobody, Apache cannot write over stuff which Tomcat wrote. Jan On Fri, 25 May 2001, Martin van den Bemt wrote: You leave a lot open to be guessed.. Can you be more

Re: RewritingURL with Tomcat3.2.1

2001-05-21 Thread Jan Labanowski
On Mon, 21 May 2001, Tim O'Neil wrote: Anyone have any problems with Apache's mod re-write and tomcat and ssl? Our web server seems to be completely ignoring the mod re-write rules when in ssl mode... Make sure that your rewrite rules are within the SSL virtual server block. VirtualHost

Re: quick clean jserv to tomcat/modjk migration?

2001-05-21 Thread Jan Labanowski
Migration from jserv and servlet spec 2.0 IS NOT EASY!!! (unless you have 2 servlets and one html page). So you cannot do it quick. If you have disk space, you can just COPY all stuff you have to new directories, and install apache and tomcat to run on other ports that what you use now (probably

Re: perplexing multiple servlet output question..

2001-05-15 Thread Jan Labanowski
Try to see if putting a frameset into a frame will help Jan On Tue, 15 May 2001, Kevin Fonner wrote: I wanted a web page to display the results of mutiple servlets (maybe even as many as 30 servlets) in rows on a web page. At first I was going to try to do it with frames where each frame

RE: TOMCAT and ORACLE

2001-05-03 Thread Jan Labanowski
If you want an example of JDBC with oracle, you can look at my Oracle install memos: http://www.ccl.net/cca/software/UNIX/oracle/ I think they are under 6.2 linux install Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet:

Re: mod_jk

2001-04-29 Thread Jan Labanowski
map_name_at is a function in jk_map.c in jakarta-tomcat-3.2.1-src/src/native/jk Obviously you did not compilie/link your mod_jk.so right. Since you are using nonstandard directories, and you do not tell us how you compiled the thing, it is hard to help you. You may try to go to the

Re: need help badly...

2001-04-28 Thread Jan Labanowski
And how can we help you, if you do not tell us which OS, which version, etc. you are using. If your OS is Linux 7.0, IRIX 6.5, or Solaris 2.7 , you can look at my installation/compilation logs at: http://www.ccl.net/cca/software/UNIX/apache Jan PS. If you are using alpha apache 2X you are on

Re: Port 80

2001-04-27 Thread Jan Labanowski
Tim, I am not sure what you are responding to... The to run on port 80 in technical terms is an established way of saying: to run a server listening to port 80. which is wordy. The question was: Can you run Tomcat as non-root on port 80, sorry: Can you run Tomcat as non-root as a server

Re: Tomcat Init at Boot

2001-04-27 Thread Jan Labanowski
You may want to look at my startup scripts burried under installation instructions in http://www.ccl.net/cca/software/UNIX/apache/ Also, should it be tomcat or tomcat.sh (franlkly, I personanly would use the startup.sh and shutdown.sh scripts in which I would put the environment). And you do

Re: Port 80

2001-04-26 Thread Jan Labanowski
I do not think you will be ever able to run tomcat standalone as non-root on port 80. Ports below 1024 can only be run as root. You say: and Apache?... Apache is written in C, not Java, and changes the effective UID to nobody (or whatever) for its children which do the work. I do not think such

Re: mod_jk and mod_jserv compiling problems

2001-04-25 Thread Jan Labanowski
Those who compile apache+mod_jk+mod_ssl+tomcat may want to check my instructions at http://www.ccl.net/cca/software/UNIX/apache Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Kinnear Rd,

Re: Adding a WAR application to Tomcat dynamically/Programatically?

2001-04-24 Thread Jan Labanowski
On Tue, 24 Apr 2001, Artur Matos wrote: Is it possible to add a application to tomcat dinamically via a Java program or a JSP page? I can put the WAR file in the right directory programatically, but how can I make tomcat recognize it without restarting the server manually? You can for

Re: SSL detection

2001-04-23 Thread Jan Labanowski
The simpler way would be to put into httpd.conf the block Directory /my/directory Limit Order deny,allow Deny from all /Limit /Directory In the HTTP section (before the SSL section in the httpd.conf) and the block Directory /my/directory Limit Order deny,allow Allow from all

RE: Starting Tomcat with user nobodyy

2001-04-23 Thread Jan Labanowski
On Mon, 23 Apr 2001, GOMEZ Henri wrote: Now... The short answer... {:-)} 1) nobody is not a good user since it does not usually have shell associated (check your /etc/passwd). It is better to create user (e.g., tomcat) with all things which user needs. Apache HTTP server switch

Re: Tomcat SSL

2001-04-23 Thread Jan Labanowski
Let say, I am not a guru... So do not ask me more... Maybe the real guys in black skin coats cowboy boots can tell us more... Jan On Mon, 23 Apr 2001, Joy Su wrote: -- Tomcat 3.2 is the first release of Tomcat to claim SSL support, but client-auth is not supported (only server

Re: Newsgroup for this list

2001-04-23 Thread Jan Labanowski
I hope we do not mirror this list on news, or we would had all these offers of hard core teens and immigration services over net... Jan [EMAIL PROTECTED] On Mon, 23 Apr 2001, Pogo Com wrote: Is there a news server that can be used to access this list? I prefer news readers to mail or web

Re: Starting Tomcat with user nobody

2001-04-22 Thread Jan Labanowski
http://www.ccl.net/cca/software/UNIX/apache/ On Sat, 21 Apr 2001, Curtis Spencer wrote: Does anyone have a good startup script that will start tomcat with the user nobody rather than root. I don't know if this is a security risk or not but I feel alittle uncomfortable starting with root.

Re: Starting Tomcat with user nobody

2001-04-22 Thread Jan Labanowski
up.sh" 2) you are logged in as tomcat cd $TOMCAT_HOME/bin ./startup.sh But... Frankly, read the URL below, since it is only a tip of the iceberg On Sat, 21 Apr 2001, Jan Labanowski wrote: http://www.ccl.net/cca/software/UNIX/apache/ On Sat, 2

Re: multiple accounts

2001-04-22 Thread Jan Labanowski
You have to define what you mean by: nobody else to be able to get to it (home directory/ or webapps/userName/). If you want people not to be able to see other people work, the answer is that only tomcat running as root can see everybodys stuff, when their directory permssions are 700, but

Posted: Install logs for Apache/Tomcat/mod_ssl for IRIX 6.5

2001-04-19 Thread Jan Labanowski
For those who lurk at my Tomcat/Apache/mod_ssl Installation instructions for Linux/Solaris there is an addition to the family: IRIX 6.5 for SGI: http://www.ccl.net/cca/software/UNIX/apache/ "Irix 6.5 Apache (1.3.14), mod_ssl, openssl, Tomcat 3.2.1, mod_jk Installation notes for IRIX, with

Re: How to configure mod_jk.conf-auto

2001-03-15 Thread Jan Labanowski
The mod_jk.conf-auto is AN EXAMPLE OF CONFIGURATION FILE which is produced when tomcat is run. Every time tomcat runs, every time the previous mod_jk.conf-auto is overwritten by new mod_jk.conf-auto YOU SHOULD NOT INCLUDE mod_jk.conf-auto IN APACHE'S httpd.conf What you should do is: 1) copy

Re: How to configure mod_jk.conf-auto

2001-03-15 Thread Jan Labanowski
balance architecture. David. From: Jan Labanowski [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: "'tomcat-user'" [EMAIL PROTECTED] CC: Jan Labanowski [EMAIL PROTECTED],Jörg Petschat [EMAIL PROTECTED] Subject: Re: How to configure mod_jk.conf-auto Date: Thu, 1

Re: What Jdks does tomcat work with?

2001-03-15 Thread Jan Labanowski
On Thu, 15 Mar 2001, Sankaranarayanan Ganapathy wrote: Does Tomcat work with jdk1.3? Sure... BTW, which tomcat, which OS... Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Kinnear Rd, |

RE: What Jdks does tomcat work with?

2001-03-15 Thread Jan Labanowski
3.2.1 works well on Solaris Sparc 2.7

Re: JSP pages not updating?

2001-03-14 Thread Jan Labanowski
There are many tomcats out there running on many operationg systems Who owns your $TOMCAT_HOME/work directory (should be the user who runs tomcat). Are you "including" something maybe? Delete everything under the $TOMCAT_HOME/work but leave the directory. On Wed, 14 Mar 2001, Mick Sullivan

Re: coordinating startup of Tomcat and Apache

2001-03-14 Thread Jan Labanowski
Have you looked at http://www.ccl.net/cca/software/UNIX/apache/ ? On Wed, 14 Mar 2001, Steve Prior wrote: I'm a firm believer in having a server box come up completely automatically with all services when turned on which is something I had with apache/jserv. Now I'm trying out

Re: How to configure mod_jk.conf-auto

2001-03-13 Thread Jan Labanowski
Copy mod_jk.conf-auto to something else. Edit this something else (say mod_jk.conf) and include it at the end of the httpd.conf in your Apache. Jan editing mod_jk.conf-auto does not make sense since it is overwritten each time the Tomcat starts... Jan On Tue, 13 Mar 2001, Neill Laney wrote:

Re: executing a servlet.

2001-03-10 Thread Jan Labanowski
Jeremy, Do yourself a favor, and read few things about JSPs/Servlets before you rediscover the wheel, which was discovered before... There are many books on the topic, but you may also want to check my page at http://www.ccl.net/cca/software/UNIX/apache/ and there is also a link to

Re: Httpd.conf

2001-03-09 Thread Jan Labanowski
On Fri, 9 Mar 2001, Gerard BORREILL wrote: Hello, Tomcat generates automatically the needed configuration files for apache at startup. Just add at the bottom of the httpd.conf : include D:/tomcat_home/conf/mod_jk.conf-auto This is actually a bad advice. The good one {:-)} is: Copy the

Re: SSL and US encryption law

2001-03-08 Thread Jan Labanowski
I am not a lawyer... So do not pay (trust) me... But if you are just using JCE and JSSE from Sun, you are not writing any crypto code, you are making calls to crypto code. If your distributor in Taiwan can go to java.sun.com site, and download these things from the Sun's Web, your butt is

Re: SSL and US encryption law

2001-03-08 Thread Jan Labanowski
The http://www.apacheweek.com/features/ssl is old news, since RSA patent expired in September 2000, and you can now use RSA stuff without any problems of rights. The rights are in public domain. So all the issues concerning the patent protection of SSL are not up to date there. There are some

Re: SSLRequireSSL

2001-03-08 Thread Jan Labanowski
You have to deny access where it is allowed, and you are doing the opposite. Put your denials outside the SSL virtual block. E.g,, before your VirtualHost _default_:443 put Directory "D:/dev/public_html/Login" Order Deny,Allow Deny from All /Directory Jan [EMAIL PROTECTED] On Thu,

Re: tomcat ssl config and apachey

2001-03-07 Thread Jan Labanowski
On Wed, 7 Mar 2001, mikhail malamud wrote: Do I need to configure anything on Tomcat for SSL if I already have SSL working on Apache and Apache works together with Tomcat. Why? Thanks, MIkhail You do not only need, but you actually cannot configure SSL in Tomcat if your requests

RE: Tomcat usability as a WebServer?

2001-03-05 Thread Jan Labanowski
On Mon, 5 Mar 2001, Samson, Lyndon [IT] wrote: But but but... tomcat does serve static pages. It can be used as a stand alone web server, and with a simple servlet, it could run cgi progams. Where is this simple servlet? Please do not confuse people... Supporting the CGI protocol according

Re: Please help. Going Nuts.

2001-03-01 Thread Jan Labanowski
One thing at a time... Do not start from most complicated stuff... Try to make hello world JSP to work first In your directory /usr/local/apache/htdocs/vitamin put a file: hello.jsp HTML BODY Hello World /BODY HTML and try to get it in the browser: http://my.machine.com:8080/vitamin/hello.jsp

RE: Please help. Going Nuts.

2001-03-01 Thread Jan Labanowski
file in the httpd.conf Once you corrected/cheked everything restart kill apache, kill tomcat start tomcat, start apache. -Original Message- From: Jan Labanowski [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 12:51 PM To: [EMAIL PROTECTED] Cc: Jan Labanowski Subject: Re:

RE: Please help. Going Nuts.

2001-03-01 Thread Jan Labanowski
che.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:49 8) at java.lang.Thread.run(Thread.java:484) ** -Original Message- From: Jan Labanowski [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 1:28 PM To: [EMAIL PROTECTED]

Re: newbie servlet deploy question

2001-03-01 Thread Jan Labanowski
OK, I found few minutes before my head hit the keyboard... I am not coy, I am overworked... And lengthy explanations take time to type... On Thu, 1 Mar 2001, Milt Epstein wrote: On Thu, 1 Mar 2001, Jan Labanowski wrote: You may want to read about servlet URLs ramapping in my http

Re: ajp12 or ajp13

2001-02-28 Thread Jan Labanowski
You do not edit mod_jk.conf-auto. It does not make sense, since it is always overwritten by tomcat when it starts. What you do is: 1) you copy the mod_jk.conf-auto to mod_jk.conf-my-own-file 2) in the Apache's httpd.conf you put the line: Include

Re: Apache - Tomcat startup race for port 8009?

2001-02-27 Thread Jan Labanowski
You may want to read my notes on starting apache/tomcat at http://www.ccl.net/cca/software/UNIX/apache/index.shtml Jan On Tue, 27 Feb 2001, Chris Haynes wrote: As far as I can read there are the following requirements when using Apache and Tomcat with AJP13 linking them: 1) To have Apache

Re: HELP: MIGRATION FROM JSERV TO TOMCAT

2001-02-27 Thread Jan Labanowski
You can check how my tomcat was installed to work with Apache at: http://www.ccl.net/cca/software/UNIX/apache/index.shtml Basically you need to edit the TOMCAT_HOME/conf/mod_jk.conf and TOMCAT_HOME/conf/workers.properties files, possibly also the server.xml file in the same directory, and the

Re: 404 error when pressing 'Submit' button when running a JSP

2001-02-27 Thread Jan Labanowski
On Tue, 27 Feb 2001, Schiff, Nicky wrote: Your Application.jar needs to be in the ../WEB-INF/lib directory Your action in the FORM should be /Application/servlet/Company.Application.Logon (I assume it is a servlet... You can remap this location in the web.xml file under your /WEB-INF dir To

Re: Problem with Tomcat - Red Hat 7

2001-02-22 Thread Jan Labanowski
On Thu, 22 Feb 2001, Vanbiervliet Matthew wrote: You may want to look at: http://www.ccl.net/cca/software/UNIX/apache/index.shtml Redhat7.0 puts Apache in different dirs than Redhat 6.2 Jan Hello everybody, I have some problems with the Tomcat install with Red Hat 7. Firstly, the path

Re: Set wich pages I can see with SSL and wich not

2001-02-22 Thread Jan Labanowski
This is done via virtual servers in apache. Check httpd.conf On Thu, 22 Feb 2001, Claudio Chrispens wrote: Hi!, I have installed SSL - apache - tomcat . I want to know if I there is a file in the tomcat or in the apache configuration where I can set wich pages could be seen with SSL and

Re: Binding Tomcat to an IP address

2001-02-22 Thread Jan Labanowski
On Thu, 22 Feb 2001, Plough, Chris wrote: I am moving from Apache/JServ to Apache/Tomcat. With JServ, I could bind it to a single IP address, so that I could run multiple instances of it on a single server. I would make changes in the jserv.conf and jserv.properties files to enable

Re: pre compile

2001-02-22 Thread Jan Labanowski
Sure... Just visit them once from your browser... Jan On Thu, 22 Feb 2001, Scott Walter wrote: Is there a way in tomcat to precompile all my jsp pages? So that as I am navigating to a new page I don't have to wait for it to compile? thanks, scott. =

Re: R: Problem with a new version of JSP pages

2001-02-21 Thread Jan Labanowski
reloadable="true" /Context Context path="/examples" docBase="webapps/examples" crossContext="false" debug="0" reloadable="true" /Context

Re: Problem with a new version of JSP pages

2001-02-20 Thread Jan Labanowski
In your browser do Shift/Reload (or Shift/Refresh) and if this does not work, delete all files in $TOMCAT_HOME/work (but not the directory). You can also change cache sized in your browser to 0k. Next time tell us what OS and what browser and what version, etc., you are using... Jan K.

Re: Problem with mod_jk

2001-02-20 Thread Jan Labanowski
You can also look at my notes at: http://www.ccl.net/cca/software/UNIX/apache/ On Tue, 20 Feb 2001, Stephan Lang wrote: Hi, As a newbie concerning tomcat, I am facing some configuration-problems: I am trying to make tomcat work with apache on my linux-box. I wanted to use tomcat

Re: strange archive filter!!

2001-02-19 Thread Jan Labanowski
Because you used a line starting from "from ". The From on the beginning of line is a message separator in UNIX. The programs which operate on mailboxes think that the From starts another message and stop. Remember "From " on the beginning of line is bad, if you need it do: From Smarter MUA

What is open software... Sorry, could not resist...

2001-02-16 Thread Jan Labanowski
On Fri, 16 Feb 2001, GOMEZ Henri wrote: Sorry that you didn't understand what is OpenSource... Here it is... Malice {:-)}. This is a official quote by Microsoft Corp.'s Windows operating-system chief, Jim Allchin. "Open source is an intellectual-property destroyer. I can't imagine

Re: Aliases/Rewrites (was: ajp12 vs ajp13 mod_jk.conf-auto

2001-02-15 Thread Jan Labanowski
It is my (and others) experience that mod_jk has to be loaded BEFORE mod_rewrite for it to act responsibly. In your case the mod_rewrite is linked statically, i.e., loaded before mod_jk. I would suggest to make both mod_jk and mod_rewrite DSO, and load/add module mod_jk before mod_rewrite.

Re: Tomcat Apache / Context

2001-02-14 Thread Jan Labanowski
I use mod_rewrite. You can check how I do it at: http://www.ccl.net/cca/software/UNIX/apache/ and click on: Linux Red Hat 7.0, Apache (1.3.14), Tomcat 3.2.1, mod_jk Compilation from scratch Jan On Wed, 14 Feb 2001, Filip Hanik wrote: aha, this is kind of a tricky one. One way is to set the

Re: How to JServ - SSL

2001-02-14 Thread Jan Labanowski
If you use Apache as a front end to Tomcat, you cannot use Tomcat SSL. Tomcat SSL only works when you go directly to Tomcat (e.g., to its port 8443 as given in default server.xml file). You can do it, but then you do not need apache for anything. If you are serving pages from Apache, and

RE: Stopping Tomcat

2001-02-13 Thread Jan Labanowski
I did not follow this thread from the beginning, but the first thing I would try is to see if ajp12 is enabled. Even if you use ajp13 for communication with apache you need ajp12 for shutting down the Tomcat. Never remove ajp12 from server.xml, only add ajp13. So, you have to have a

Re: Error on startup any ideas???

2001-02-13 Thread Jan Labanowski
Do a netstat -a -n | more and see if something is using and port which you have given in server.xml (do grep port server.xml to find all port assignments in your server.xml) Looking at your log something us using port 397. Do not be confused... Tomcat is a server (i.e., opens ports for

Re: apache 1.3.17 and mod_jk on solaris

2001-02-11 Thread Jan Labanowski
What did you use to compile apache? gcc or the Sun cc? Use gcc... You may want to glance at my notes on compiling Apache/mod_jk for Solaris at http://www.ccl.net/cca/software/UNIX/apache/ On Sun, 11 Feb 2001, Dan Kern wrote: Date: Sun, 11 Feb 2001 11:18:03 +0200 From: Dan Kern [EMAIL

Re: source build and mod_jk

2001-02-10 Thread Jan Labanowski
You do not say which OS you are using. Is you use Solaris or Linux, you may want to check: http://www.ccl.net/cca/software/UNIX/apache/ I give prescriptions how to compile mod_jk, and how to get it... On Sat, 10 Feb 2001, mikhail malamud wrote: Hello - I built tomcat from 3.2.1 source

Re: URL Rewrite between Apache Tomcat (ah,ah it's very funny toconfigure)

2001-02-09 Thread Jan Labanowski
You may want to check my installation logs and see how I do rewrite. Rewrite works with mod_jk, but you need to load mod_jk module BEFORE mod_rewrite. Check the http://www.ccl.net/cca/software/UNIX/apache/ namely: http://www.ccl.net/cca/software/UNIX/apache/apacheRH7.0/README.html Jan

RE: init-param to JSP

2001-02-06 Thread Jan Labanowski
Worked for me all my life. E.g., in web.xml: context-param param-nameopen-port/param-name param-value7180/param-value descriptionPort for regular HTTP via Apache/description /context-param context-param param-namesecure-port/param-name param-value7143/param-value

Re: servlet-mapping: Apache intercepting calls to webapp and returning 404

2001-02-06 Thread Jan Labanowski
You may want to see a piece on remapping in my Tomcat FAQ getting old. http://www.ccl.net/cca/software/UNIX/apache/index.shtml You cannot remap stuff out of your context, though... Jan On Tue, 6 Feb 2001, Ritwick Dhar wrote: Hello, My apologies if the question has been asked previously,

RE: servlet-mapping: Apache intercepting calls to webapp and returnin g 404

2001-02-06 Thread Jan Labanowski
much for your help. Rit -Original Message- From: Jan Labanowski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 2:44 PM To: '[EMAIL PROTECTED]' Subject: Re: servlet-mapping: Apache intercepting calls to webapp and returnin g 404 You may want to see a piece on remapping i

Re: linking a static mod_jk with Apache

2001-02-05 Thread Jan Labanowski
http://w6.metronet.com/~wjm/tomcat/2000/Sep/msg00794.html On Mon, 5 Feb 2001, Rouiller Samuel wrote: Hi, I want to use Apache and Tomcat together. However, I need to build Apache statically due to a thread problem with the OCI library. Hence my question: Is it possible to compile mod_jk

Re: starting Tomcat at boot time on Linux

2001-02-02 Thread Jan Labanowski
If you want to start Apache+Tomcat at boot time, you may want to look at some of my scripts: http://www.ccl.net/cca/software/UNIX/apache/ Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Kinnear Rd,

Re: JSP pages in webapps/ROOT will not 'recompile'

2001-02-02 Thread Jan Labanowski
The /ROOT webapp is mounted as / context in tomcat. So you can access it in Tomcat on port 8080, but cannot mount it in Apache (or whatever), since you would be sending everything to Tomcat as it would hold the root context. You may want to look at my http://www.ccl.net/cca/software/UNIX/apache

Re: JkMount for all context

2001-02-02 Thread Jan Labanowski
1) If you want everything served by Tomcat, why bother with Apache? 2) I am afraid you cannot escape mounting each context separately both in server.xml and in mod_jk.conf, i.e., JkMount /context1/* ajp13 Alias /context1 "/your/full/path/to/context1" Directory

RE: JkMount for all context

2001-02-02 Thread Jan Labanowski
://www.ccl.net/chemistry.html Columbus, OH 43212-1163 |http://www.osc.edu/ /A -Original Message- From: Jan Labanowski [mailto:[EMAIL PROTECTED]] Sent: den 2 februari 2001 21:28 To: '[EMAIL PROTECTED]' Cc: Jan Labanowski Subject: Re: JkMount for all context 1

Re: redirecting *.html to Tomcat ?

2001-02-02 Thread Jan Labanowski
Sure... Just add: JkMount /examples/servlet/* ajp13 JkMount /examples/*.jsp ajp13 JkMount /examples/*.html ajp13 in your mod_jk.html On Fri, 2 Feb 2001, Grobe, Gary wrote: I've got some *.html pages that I want to send to Tomcat so that my filters can act on them. Is that

Re: how to enable ssi in tomcat. Urgent plssssssss

2001-01-31 Thread Jan Labanowski
SSI (Server Side Includes) work only in Apache. They do not work in Tomcat. You have to choose... Either you do SSI or JSP, you cannot have both. If you have: JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 in you mod_jk.conf and AddType text/html .shtml AddHandler server-parsed

Re: Can not generate mod_jk.so file

2001-01-31 Thread Jan Labanowski
Check my installation logs for Linux 7.0. Somewhere there I give a detailed prescription on how to compile mod_jk. http://www.ccl.net/cca/software/UNIX/apache/index.shtml Jan On Wed, 31 Jan 2001, Fabio Galarraga wrote: Hi to all: I'm trying to configure Tomcat+Apache+SSL so I must install

Re: Apache/Tomcat integration, help !

2001-01-30 Thread Jan Labanowski
Check it out... http://www.ccl.net/cca/software/UNIX/apache/ There is a link to compiled mod_jk.so there... Jan On Tue, 30 Jan 2001, [iso-8859-1] Joel Cordonnier wrote: Hi! As a newbie, I try to integrate Tomcat 3.2 with Apache 3.12 under RedHat 7.0. So I need the mod_jk.so shared

Re: Tomcat and Apache integration

2001-01-30 Thread Jan Labanowski
Check it out... http://www.ccl.net/cca/software/UNIX/apache/ On Tue, 30 Jan 2001 [EMAIL PROTECTED] wrote: I'd like to use the Apache web server with Tomcat. I haven't managed to locate any documentation in this regard. Can someone point me to the URL? Thank you, Paul Asarak

Re: Tomcat and Apache

2001-01-30 Thread Jan Labanowski
Two hours ago, I provided you with the pointer where you can find the mod_jk.so connector: http://www.ccl.net/cca/software/UNIX/apache/index.shtml The RPMS were also mentioned: http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.1/rpms/ In the Instructions for Linux RH7.0 (e.g.:

Re: Build mod_jk.so - no match

2001-01-30 Thread Jan Labanowski
It is known that compiling apache under non-GNU C compiler is a problem... On the other hand, under gcc it compiles like charm... Jan [EMAIL PROTECTED] Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224

Re: Problem with apxs and mod_jk

2001-01-30 Thread Jan Labanowski
The apxs is a perl script... The first line should be like: #!/usr/bin/perl or #!/usr/local/bin/perl or whatever... Do: which perl and put the stuff which it returns as the first line of apxs... remember to put the #! before it... Jan On Tue, 30 Jan 2001, Marilee Niemi wrote: I am

  1   2   >