Re: Tomcat5 and Linux-HA

2007-04-20 Thread Gaël Lams
Hi, Is it possible to configure Tomcat5 in a Linux cluster (Linux-HA (Heartbeat 2). I want to configure it on SLES10. I have already checked the Tomcat FAQ at Tomcat.apache.org, the How to at that location, Googling it returns nothing on the subject. If a config/setup doc exists I cannot

Re: IPTABLES

2006-10-20 Thread Gaël Lams
Im running a tomcat in port 80 without httpd I want redirect packages from 80 to 8080 because tomcat is running as tomcat user (cant run as other non root under port 1025) and I tried the IPTABLES redirection aproach but doesnt work I performed the same setup to have tomcat running on 8080 but

Re: Tomcat 5.5.17 APR/SSL Client Certificat

2006-06-20 Thread Gaël Lams
Hi, I cannot obtain client certificate with SSL/client certificate authentication using APR components ... It's probably a stupid question, but did you generate the client certificate and did you import in the browser from which you are trying to connect to your application? How did you

Re: Tomcat SSL, after clientAuth=false worked, how to set up to true?

2006-06-19 Thread Gaël Lams
The problem is that Microsoft Internet Explore and Netscape now are serious about the Root Trust Authorities. ... I'm not sure what you mean by serious about the Root Trust Authorities but I tested the ssl client authentication on several computers, both inside and outside our LAN with both

Re: Tomcat as a standalone webserver. Why not?

2006-06-01 Thread Gaël Lams
Hi, I wondering if it's really so good to use Tomcat behind a real web server like Apache or IIS. In my Tomcat 5 book there are two reasons to do it so: 1. Tomcat is not as secure as common web servers, especially if you want to use CGI and SSI (I don't think I want to) 2. Tomcat is

Re: tomcat textbook

2006-05-22 Thread Gaël Lams
Hi, I am new to tomcat server, eventhough the tomcat has online documentation, i wud like to follow a textbook . I am not sure which book covers about tomcat from basic to advanced level. Can any of you send me the author name with the title of the book? If you search the list, you will

Re: Tomcat: The Definitive Guide Question

2006-05-19 Thread Gaël Lams
Hi Can you provide a direct link(s) for that Tomcat online documentation? Any information is appreciated. Thank you. It's a book, Professional Apache Tomcat 5, by Wrox. Regards, Gaël

Re: Using mod_jdk?

2006-05-18 Thread Gaël Lams
Hi, I am using the following mount command in my apache config.: JkMount /webapp/* worker1 But I have to use this url to make it work..: http://www.domain.no/webapp/ and I would like this url to work also..: http://www.domain.no/webapp Is that possible? Yes, rewrite it first:

Re: Problem with apache tomcat

2006-05-16 Thread Gaël Lams
Hi, installed with Apache 2.0,Apache tomcat version 5.0.28 and Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01). There is freqent problem with Tomcat. It gets If Im' not wrong, only Tomcat 5.5.x works with the JRE, Tomcat 5.0.x needs the JDK. Also Tomcat 5.0.x needs JDK 1.4.x

Re: Problem with Apache 2.0

2006-05-12 Thread Gaël Lams
Hi We have recently upgraded Apache from 1.4 to 2.0 Its working fine on English but its displaying garbage characters on non English locales .. Do we need to add some thing .. I am very new to this area .. Can some one please help me in this regard You should send your question to the httpd

Re: Log Files

2006-05-10 Thread Gaël Lams
Hi, Newbie question here folks I read in previous mails that there is a Catalina.out file Is catalina_log.2006-05-06.txt file (one by date).. But no *.log files.. It's catalina.out (not .log), you will for sure find it, and yes, it's the most important log file.

Re: easiest way to schedule an automatic restart of tomcat?

2006-05-08 Thread Gaël Lams
What is an easy way to schedule an automatic restart of Tomcat - say every day at 3am? if you use linux: add a line in your crontab executing /etc/init.d/tomcat restart Regards, Gaël

Re: Install Guide

2006-05-06 Thread Gaël Lams
On 5/5/06, Dirk Moolman [EMAIL PROTECTED] wrote: Sorry, I tried 8081, but also 8080 (as in a previous mail), but both won't connect. After Tomcat start, did you verify that it's really listening on these ports (netstat -antpl)? Verify first that it's listening to that port (there should be 2

Re: Tomcat: The Definitive Guide Question

2006-05-06 Thread Gaël Lams
I read Professional Tomcat 5 (Wrox Press). Not bad, but I'd say for real problems the mailing list is still the best source of information. BTW the Tomcat online documentation is in fact far above open source average and some books are mainly a beautified copy of it. Professional Tomcat 5 also

Re: SSL enabled and trying to open the port 8443 wit h the browser and nothing happend

2006-05-06 Thread Gaël Lams
Hi, I enable SSL in Tomcat, creating a key creaded with keytool and I updated my server.xml removing the comments on the port 8443 to enable it's access. But when I call in my browser localhost:8443 the browser receives a file and gives me option t save it or open it with ...??? Did you

Re: Apache and Tomcat

2006-02-28 Thread Gaël Lams
Hi, I'm trying to make Apache 2.0.55 connect to Tomcat 5, using mod_jk. I'm getting cannot find worker, and my config files seems to be ok. Is there other way to make Apache and Tomcat talk? I read that it's recommended to use mod_proxy_ajp, but it's only available on Apache 2.2, and there

application problem after installing Apache Portable Runtime

2006-01-25 Thread Gaël Lams
Hi all, After reading the benefits of using apr (and seen the info message in catalina.out ;-) I downloaded apr-1.2.2, configure make make install and modified my init.d script with -Djava.library.path=/usr/local/apr/lib'. Tomcat (version 5.5.12, jre1.5.0_05, Suse Professional 9.3) seems to

Re: how to configure the tomcat 5.5.12 for a port 80 in linux (Gentoo)??

2006-01-19 Thread Gaël Lams
So, I have configure a tomcat for a port 8080 in Linux (Gentoo), but when I try chance this port to 80 this make mistaje of Permission in de logs What can I do? It realley depends if it's fine with you to run Tomcat as root You have three possibilities: - if you don't care about running

Re: how to configure the tomcat 5.5.12 for a port 80 in linux (Gentoo)??

2006-01-19 Thread Gaël Lams
And there's always option number 4 -- use jsvc from the commons-daemon project to start tomcat safely as root and then drop root privilege for normal operations. This will get you port 80 without the inherent risks of running a process as root. Tomcat's bin directory has an archive of the