Problem with tomcat configuration

2005-10-06 Thread vineesh kumar
Hi all, I manged to configure https on tomcat 5.5.9 with a passord different than changeit. It's working.But i tried to configure https on port 80 (i am running tomcat as root user). but when i point the browser to the system like https://localhost/ I am getting an error indicating that connection

Re: Problem with tomcat configuration

2005-10-06 Thread Mark Eggers
https is port 443. You need to to uncomment the HTTP 1.1 connector for 8443 and change the port to 443. Uncomment the following connector in server.xml: !-- Define a SSL HTTP/1.1 Connector on port 8443 -- !-- Connector port=8443 maxHttpHeaderSize=8192 maxThreads=150

Re: Problem with tomcat configuration

2005-10-06 Thread Marcus Franke
On Thu, Oct 06, 2005 at 12:14:58AM -0700, Mark Eggers wrote: https is port 443. You need to to uncomment the HTTP 1.1 connector for 8443 and change the port to 443. Uncomment the following connector in server.xml: !-- Define a SSL HTTP/1.1 Connector on port 8443 -- !-- Connector

RE: Tomcat does not honor acceptCount configuration variable

2005-10-05 Thread Wei Zhao
Any tips on this issue? -Original Message- From: Wei Zhao [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 11:22 AM To: tomcat-user@jakarta.apache.org Cc: [EMAIL PROTECTED] Subject: Tomcat does not honor acceptCount configuration variable Hi: I am resending this question

Tomcat does not honor acceptCount configuration variable

2005-10-04 Thread Wei Zhao
Hi: I am resending this question since I did not get any answer last time. We've just migrated Tomcat from version 4.06 to 5.5.9 and found that the configuration variable 'acceptCount' under 'Connector' element takes no effect. For example, if I set acceptCount to 1000 but leave maxThreads

Re: TC v5.5.12 Broke My Configuration

2005-09-27 Thread Peter Miller
(very simple) configuration is now broken. The following configuration works beautifully under 5.5.9 -- no exceptions, no warnings, just utter perfection. Here's a description of my configuration (BTW, CATALINA_HOME and JAvA_HOME are fine, I'm sure they're not causing the problem). I have

TC v5.5.12 Broke My Configuration

2005-09-26 Thread Bob Bronson
Hi all, I've just tried to upgrade from TC v5.5.9 to v5.5.12 and it seems my (very simple) configuration is now broken. The following configuration works beautifully under 5.5.9 -- no exceptions, no warnings, just utter perfection. Here's a description of my configuration (BTW

Tomcat does not honor acceptCount configuration variable

2005-09-13 Thread Wei Zhao
I’ve just migrated to Tomcat 5.5 and found that the configuration variable “acceptCount” under “Connector” takes no effect. For example, if I set acceptCount to 1000 but leave maxThreads to 75, it cannot handle 500 concurrent requests. I have to increase the maxThreads to around 1000

RE: Tomcat does not honor acceptCount configuration variable

2005-09-13 Thread Caldarale, Charles R
From: Wei Zhao [mailto:[EMAIL PROTECTED] Subject: Tomcat does not honor acceptCount configuration variable I’ve just migrated to Tomcat 5.5 and found that the configuration variable “acceptCount” under “Connector” takes no effect. Can you show us your complete Connector/ tag

Tomcat Log4j Log Level Configuration

2005-09-08 Thread Jojo Paderes
How do I configure Tomcat or Log4J to change the log level output during runtime? Anybody already done this successfully with Tomcat 5.5.9? -- My Blogs http://jojopaderes.blogspot.com Google Talk http://www.google.com/talk (ID: jojo.paderes) In preparing for battle I have always found that plans

Different behaviour for log4j configuration from common/classes and WEb-INF/classes

2005-09-07 Thread Allistair Crossley
Hi, We've recently noticed that our log4j configuration logs are pretty empty. I decided I must have changed something that ruptured the configuration, so with a brand new installation of Tomcat 5.5.11 and a basic log4j config file (shown below) I set about testing what was happening

JAAS Configuration Issue

2005-09-06 Thread A. Alonso Dominguez
Hi there! I'm using Tomcat 5.5.9 and JDK 1.5.0 and I was probbing to implement a JAAS Authentication mechanism for may webapps. I followed some tutorials and the Tomcat 5.5 JAASRealm configuration and I did it in that way. I updated the java.policy file with the next lines: grant codeBase

jaas configuration file environment vars

2005-09-01 Thread Ittay Dror
Hi, Does anyone know if the jaas configuration file can read parameters from the env (something like 'option=${var}'), if not, how can I acheive this effect (without recreating the file every time I launch) Thanx, Ittay -- === Ittay Dror ([EMAIL PROTECTED

Tomcat and IIS load balancing configuration

2005-08-29 Thread Don Hayes
I am testing a load balancing configuration with Tomcat and IIS using the isapi_redirector. My configuration works if I have a single worker defined in my workers.properties file but it fails if I try to add a second worker (ie, I change the balance_workers entry near the bottom of the file

Re: configuration files for war deployments

2005-08-28 Thread Patrick Lacson
thanks for all your suggestions on this. it seems that an exploded format is what most people deploy with just to make configuration easier?? anyway, i'll think through some of these ideas. much appreciated, patrick On 8/27/05, QM [EMAIL PROTECTED] wrote: On Fri, Aug 26, 2005 at 11:47:54PM

Re: configuration files for war deployments

2005-08-28 Thread Rob Hills
to: 1. Have a configuration file with application-specific properties that lives in the WEB-INF tree and is loaded in the usual way via a context-parameter reference in web.xml. This file contains properties that vary from one application to another, but are the same for every server. 2

RE: configuration files for war deployments

2005-08-28 Thread Richard Mixon (qwest)
tasks that modify various properties and xml files for the target host. It means that on each host that needs specific configuration you: - explode the war file - run ant compile undeploy deploy You now have a customized web application installed. Hope it helps - Richard -Original Message

Re: configuration files for war deployments

2005-08-27 Thread Patrick Lacson
jdbc config options, common file system info, http urls for external sites, things of that nature. we have a complex multitenant system that needs to be configured by our sysadmins. granted this app is hosted and not deployed at customers, but currently we are hosting it on tomcat and later

Re: configuration files for war deployments

2005-08-27 Thread QM
On Fri, Aug 26, 2005 at 11:47:54PM -0700, Patrick Lacson wrote: : jdbc config options, common file system info, http urls for external : sites, things of that nature. we have a complex multitenant system : that needs to be configured by our sysadmins. What about having separate config files that

Re: configuration files for war deployments

2005-08-26 Thread Nikola Milutinovic
Patrick Lacson wrote: hi All, If I were to deploy my application as a .war file, where do I place the .properties configuration files? I know there's the option of auto-expanding the war file at deployment, but is there a way to keep the war file unexpanded and provide an external .properties

Re: configuration files for war deployments

2005-08-26 Thread QM
On Fri, Aug 26, 2005 at 02:16:26AM +0800, Patrick Lacson wrote: : I know that's typically where they go, but if the file is inside the : .war, how is the file going to be configured by the sysadming folks? Webapps are meant to be fairly standalone. If you require that one be configured after it

configuration files for war deployments

2005-08-25 Thread Patrick Lacson
hi All, If I were to deploy my application as a .war file, where do I place the .properties configuration files? I know there's the option of auto-expanding the war file at deployment, but is there a way to keep the war file unexpanded and provide an external .properties file for the web app

RE: configuration files for war deployments

2005-08-25 Thread Phillip Qin
Your classpath, i.e. WEB-INF, or classes. -Original Message- From: Patrick Lacson [mailto:[EMAIL PROTECTED] Sent: August 25, 2005 11:32 AM To: Tomcat User-List Subject: configuration files for war deployments hi All, If I were to deploy my application as a .war file, where do I place

Re: configuration files for war deployments

2005-08-25 Thread Patrick Lacson
classpath, i.e. WEB-INF, or classes. -Original Message- From: Patrick Lacson [mailto:[EMAIL PROTECTED] Sent: August 25, 2005 11:32 AM To: Tomcat User-List Subject: configuration files for war deployments hi All, If I were to deploy my application as a .war file, where do I place

tomcat port listening configuration

2005-07-25 Thread Mark
I am trying to configure tomcat to listen on the same port, but different IP's. Is this possible using Tomcat? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Dynamic server configuration...

2005-07-21 Thread Rodrigo Spievak Cavalcanti
Hi folks, Is there any way to change tomcat engine configuration at runtime, without restarting the entire engine ? Some kind of dynamic engine configuration, being able to change hosts, add hosts, and changing host configurations ? Thanks

Re: Dynamic server configuration...

2005-07-21 Thread Rob Hills
Hi Rodrigo, On 21 Jul 2005 at 19:12, Rodrigo Spievak Cavalcanti wrote: Is there any way to change tomcat engine configuration at runtime, without restarting the entire engine ? Some kind of dynamic engine configuration, being able to change hosts, add hosts, and changing host

Automated Server Configuration (was api for server.xml maintenance)

2005-07-21 Thread Rob Hills
Hi All, I received no reply to my earlier email in this thread so I thought I'd try and come up with a less verbose description of my problem. I'm looking to automate the management of hosts on my server. Our tomcat servers operate multiple applications, each of which has its own host entry

Re: Tomcat SSL Cipher Configuration

2005-07-18 Thread Edmund Urbani
Jojo Paderes wrote: Hi, I'm looking for some decent documentation and technical reference on how to configure Tomcat's SSL cipher. Say for example I want Tomcat to support a specific SSL cipher suite like Triple DES. Hope someone has done something like this already. I'm using Tomcat 5.5 btw.

Re: Tomcat SSL Cipher Configuration

2005-07-18 Thread Mark Thomas
Jojo Paderes wrote: I'm looking for some decent documentation and technical reference on how to configure Tomcat's SSL cipher. Say for example I want Tomcat to support a specific SSL cipher suite like Triple DES. Hope someone has done something like this already. I'm using Tomcat 5.5 btw. See

Tomcat SSL Cipher Configuration

2005-07-17 Thread Jojo Paderes
Hi, I'm looking for some decent documentation and technical reference on how to configure Tomcat's SSL cipher. Say for example I want Tomcat to support a specific SSL cipher suite like Triple DES. Hope someone has done something like this already. I'm using Tomcat 5.5 btw. Thanks, Jojo --

Re: Tomcat Configuration

2005-07-17 Thread Hari Saptoadi
- Original Message - From: Iin Nurhidayat [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org; Bryan Scarbrough [EMAIL PROTECTED] Sent: Thursday, July 14, 2005 7:58 PM Subject: Re: Tomcat Configuration See nothing at all, get 404 resource /myapplication

Tomcat5.0 Database Connection Pooling Configuration

2005-07-14 Thread Foo Shyn
application to enable the datasource for each of my apps. Since my apps are all connecting to a same database server, is there any configuration method that allows me to setup once in server.xml (such as setting a 'common context') and let my web.xml to handle the rest? Thanx. Regards, F.S.

Tomcat Configuration

2005-07-14 Thread Iin Nurhidayat
Hi All, I have a problem with my deployment. I have some servlets and one Login.html. I will put my servlets and Login.html on /myapplication Based on book i have read : a) I configure the server.xml Context path= /myapplication docBase= /webapps/myapplication reloadable= true

RE: Tomcat Configuration

2005-07-14 Thread Raghupathy,Gurumoorthy
Context path= /myapplication docBase= myapplication reloadable= true crossContext= true Remove ( /webapps/ ) Regards Guru -Original Message- From: Iin Nurhidayat [mailto:[EMAIL PROTECTED] Sent: 14 July 2005 12:14 To: Tomcat Users List Subject: Tomcat Configuration Hi All, I

RE: Tomcat Configuration

2005-07-14 Thread Iin Nurhidayat
- From: Iin Nurhidayat [mailto:[EMAIL PROTECTED] Sent: 14 July 2005 12:14 To: Tomcat Users List Subject: Tomcat Configuration Hi All, I have a problem with my deployment. I have some servlets and one Login.html. I will put my servlets and Login.html on /myapplication Based

RE: Tomcat Configuration

2005-07-14 Thread Raghupathy,Gurumoorthy
Did you restart tomcat ? -Original Message- From: Iin Nurhidayat [mailto:[EMAIL PROTECTED] Sent: 14 July 2005 13:30 To: Tomcat Users List Subject: RE: Tomcat Configuration Hi Guru, i replced webapps but i have same problem also ... Thanks - IN - --- Raghupathy,Gurumoorthy [EMAIL

RE: Tomcat Configuration

2005-07-14 Thread Iin Nurhidayat
yess --- Raghupathy,Gurumoorthy [EMAIL PROTECTED] wrote: Did you restart tomcat ? -Original Message- From: Iin Nurhidayat [mailto:[EMAIL PROTECTED] Sent: 14 July 2005 13:30 To: Tomcat Users List Subject: RE: Tomcat Configuration Hi Guru, i replced webapps but i

RE: Tomcat Configuration

2005-07-14 Thread Raghupathy,Gurumoorthy
Send me the server.xml -Original Message- From: Iin Nurhidayat [mailto:[EMAIL PROTECTED] Sent: 14 July 2005 13:36 To: Tomcat Users List Subject: RE: Tomcat Configuration yess --- Raghupathy,Gurumoorthy [EMAIL PROTECTED] wrote: Did you restart tomcat ? -Original

Re: Tomcat Configuration

2005-07-14 Thread Jon Wingfield
PROTECTED] Sent: 14 July 2005 13:30 To: Tomcat Users List Subject: RE: Tomcat Configuration Hi Guru, i replced webapps but i have same problem also ... Thanks - IN - --- Raghupathy,Gurumoorthy [EMAIL PROTECTED] wrote: Context path= /myapplication docBase= myapplication reloadable= true

Re: Tomcat Configuration

2005-07-14 Thread Bryan Scarbrough
Will it load the Login.html file, or do you simply see nothing at all? On 7/14/05, Iin Nurhidayat [EMAIL PROTECTED] wrote: Hi All, I have a problem with my deployment. I have some servlets and one Login.html. I will put my servlets and Login.html on /myapplication Based on book i

Re: Tomcat Configuration

2005-07-14 Thread Iin Nurhidayat
See nothing at all, get 404 resource /myapplication is not available .. - IN - --- Bryan Scarbrough [EMAIL PROTECTED] wrote: Will it load the Login.html file, or do you simply see nothing at all? On 7/14/05, Iin Nurhidayat [EMAIL PROTECTED] wrote: Hi All, I have a problem

Re: Tomcat5.0 Database Connection Pooling Configuration

2005-07-14 Thread Alon Belman
of my apps. Since my apps are all connecting to a same database server, is there any configuration method that allows me to setup once in server.xml (such as setting a 'common context') and let my web.xml to handle the rest? Thanx. Regards, F.S

Configuration error

2005-07-13 Thread Antonio Albendiz
When I´m doing all the things that they put to do to configure the ssl apache tomcat Server, an error occurs. When I´m importing my new certificate it puts: “keytool error: java.lang.Exception: No chain for the response”. Why ?? Someone knows what can I do??

JNDI DataSource configuration

2005-07-08 Thread Peter . Zoche
configuration, but the how-to says: Create a resource definition file for your application defining the datasource. This file must have the same name as your application, so if your application deploys as someApp.war, this filename must be someApp.xml.This file should look something like the following

Re: JNDI DataSource configuration

2005-07-08 Thread Joe Plautz
/jndi-datasource-examples-h owto.html. I would like to have an application-specific resource configuration, but the how-to says: Create a resource definition file for your application defining the datasource. This file must have the same name as your application, so if your application deploys

Configuration Tomcat after upgrading Java SDK

2005-07-05 Thread Lily Widiawaty Tan
Hi all I have upgraded my java sdk and jre to j2sdk1.4.2_08 from j2sdk1.4.1_01. How do I configure Tomcat 4.1.30 so that it runs from the j2sdk1.4.2_08 instead of the old copy? Do I have to reinstall Tomcat or is there a configuration that I can change? I have changed my JAVA_HOME

Re: Host Context Configuration

2005-06-30 Thread Chris. Grobmeier
Hi! what happens if u remove the standard root-app ?? i checked this out and realized that deep links work. I guess my problem is not in tomcat, but in my Struts-Configuration. It seems my default-page forward forwards to the wrong host. thanks anoop for the tip! this was exactly the hint i

Specifying multiple, valid ciphers in standalone tomcat configuration 4.0.29

2005-06-29 Thread Chris Zappala
know that the ciphers need to be specified in a comma-separated list. However, what are the valid ciphers and/or cipher aliases that can be specified? The configuration below does not appear to work. I'm assuming this is an issue with the way I'm specifying the ciphers. If someone could provide

Host Context Configuration

2005-06-29 Thread Chris. Grobmeier
Hello, its me again. I am trying to configure my tomcat to receive domain.de and map it to the correct context. Apache-Configuration looks OK. In my Localhost-Engine (is this ok? i guess so) i have a seconde host: Host name=domain.de appBase=/etc/tomcat4/webapps/domain_webapp

Re: Host Context Configuration

2005-06-29 Thread Anoop kumar V
that helps, Anoop On 6/29/05, Chris. Grobmeier [EMAIL PROTECTED] wrote: Hello, its me again. I am trying to configure my tomcat to receive domain.de and map it to the correct context. Apache-Configuration looks OK. In my Localhost-Engine (is this ok? i guess so) i have a seconde host: Host

RE: Specifying multiple, valid ciphers in standalone tomcat configuration 4.0.29

2005-06-29 Thread Chris Zappala
configuration 4.0.29 Hi, I'm trying to specify a list of valid ciphers for a standalone tomcat instance. I've scoured the FAQs, documentation, and googled until my eyes bled. I did find references to the RFC, and to the best of my knowledge, I am specifying the ciphers in compliance with those

VirtualHost configuration SSL

2005-06-23 Thread Lars Nielsen Lind
Hi. I want to configure the following: www.domain.com http://www.domain.com/ port 80 - start page and unsecure area www.domain.com http://www.domain.com/ port 443 - redirects to ssl.domain.com:443 ssl.domain.com port 80 redirects to ssl.domain.com port 443 ssl.domain.com

Re: VirtualHost configuration SSL

2005-06-23 Thread Bruno Georges
Subject: VirtualHost configuration SSL

Re: VirtualHost configuration SSL

2005-06-23 Thread Bruno Georges
: | |Subject: Re: VirtualHost configuration SSL | | | |Distribute

Re: VirtualHost configuration SSL

2005-06-23 Thread dan stephens
: Re: VirtualHost configuration SSL Date: Thu, 23 Jun 2005 13:41:24 +0200 Lars Correction: Name-based virtual hosting cannot be used with SSL secure servers because of the nature of the SSL protocol. You will need to use IP-Based virtual hosting when enabling SSL. Hope this helps. Bruno Georges

mod_jk configuration

2005-06-22 Thread [EMAIL PROTECTED]
Hello all, i am using Tomcat 4.1.3x, mod_jk 1.x and Apache 1.3.x. I have read all the documentation available on apache.org, but i think i have not understood some principles of JK. Problem: I have java.domain.tld pointing to the root-directory of Tomcat. The default tomcat site appears. I

Re: mod_jk configuration

2005-06-22 Thread Colby . Meyer
JkMount /* ajp13 -- My worker /virtual host ... This seems to work in our configuration to handle this type of operation. Have Fun... Colby C. Meyer [EMAIL PROTECTED] [EMAIL PROTECTED] 06/22/2005 01:31 AM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users

Re: Re: configuration question : the number of connections could be supported by a connector in Tomcat 5.0

2005-06-19 Thread charly
Subject: RE: Re: configuration question : the number of connections could be supported by a connector in Tomcat 5.0 Bill: Thanks for your answer. In my case, the client just directly talks to Tomcat. So, the maxThread means maxConnections. Is it possible for Tomcat ( any version which supports

RE: Re: configuration question : the number of connections could be supported by a connector in Tomcat 5.0

2005-06-18 Thread Feng Xie \(fxie\)
PROTECTED] On Behalf Of Bill Barker Sent: Friday, June 17, 2005 10:47 PM To: tomcat-user@jakarta.apache.org Subject: Re: configuration question : the number of connections could be supported by a connector in Tomcat 5.0 If you are fronting with Apache, then the mapping between connections

configuration question : the number of connections could be supported by a connector in Tomcat 5.0

2005-06-17 Thread Feng Xie \(fxie\)
I like to get some help on how to configure the maximum number of connections could be supported by Tomcat5.0. There is one config attribute called maxThreads, according to Tomcat doc, which isThe maximum number of request processing threads to be created by this Connector, which therefore

Re: configuration question : the number of connections could be supported by a connector in Tomcat 5.0

2005-06-17 Thread Bill Barker
If you are fronting with Apache, then the mapping between connections and threads is more a function of your MPM. As a result, I'm just going to answer for the stand-alone Connector. In Tomcat 5.0, there is a one-to-one mapping between socket connections and threads. Pipelined HTTP/1.1

[OT] Configuration of 5 country sites and 1 web application base

2005-06-14 Thread Allistair Crossley
these sites, or would you run each site as a separate web application and configure the build process appropriately. Being able to bring down 1 particular site is the main benefit I can see for separate web applications, whereas more centralised configuration may be a benefit for 1 web application

Re: [OT] Configuration of 5 country sites and 1 web application base

2005-06-14 Thread Tim Funk
. Being able to bring down 1 particular site is the main benefit I can see for separate web applications, whereas more centralised configuration may be a benefit for 1 web application. I'd really like to hear your opinions if you do the same thing or have thoughts on this topic. Thanks in advance

Problem with mod_mpm / mod_jk / Tomcat Configuration

2005-06-08 Thread Andreas Oesterer
Under high load, the loadbalancing seems to forget session affinity and users have to log in again. Apache 2.0.54 with mod_mpm mod_jk 1.2.8 14 x Tomcat 4.1.31 instances The MaxClient setting seems to be causing most of these troubles. I don't exactly understand how the mpm and Tomcat settings

Problem with mpm/mod_jk/Tomcat Configuration

2005-06-08 Thread Andreas Oesterer
Under high load, the loadbalancing seems to forget session affinity and users have to log in again. Apache 2.0.54 with mod_mpm mod_jk 1.2.8 14 Tomcat 4.1.31 instances The MaxClient setting seems to be causing most of these troubles. I don't exactly understand how the mpm and Tomcat settings are

Eclipse/Error listenerStart problem need Class Loader Configuration Dumper

2005-06-03 Thread tomcat-users . list
I would like to dump the configuration of a specific instance of a class loader form within tomcat. For some reason when I run TC standalone my listener works no problem, the class loader can find my class from within my webapp directory. However when its run under Eclipse it can not, I notice

logging.properties configuration - log stdout and stderr to a file

2005-06-01 Thread SANTHANA GOPALAN
Hi, How to configure tomcat 5 to log stderr and stdout to the log file. I tried it using logging.properties but the stdout and stderr is displaying only in the console. How to log into the file? I am using tomcat 5.5.9 on windows OS. How to configure logging.properties file? With

Re: logging.properties configuration - log stdout and stderr to a file

2005-06-01 Thread William BC Crandall
[EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: 01 June 2005 2:01 AM Subject: logging.properties configuration - log stdout and stderr to a file Hi, How to configure tomcat 5 to log stderr and stdout to the log file. I tried it using logging.properties but the stdout

Redirect by configuration

2005-05-29 Thread Amihai Fuks
the Tomcat (standalone) to be able redirect by configuration! (Writing a Servlet that redirects from /my-OLD-servlet is not what I need I want to delete the /my-OLD-context directory.) Regards, Amihai - To unsubscribe, e-mail: [EMAIL

Embedded Tomcat JNDI/JDBC Configuration Questions

2005-05-29 Thread Joe Reger, Jr.
Hi! I've successfully created a project that embeds Tomcat. Excellent! I can see the sample page and the manager app, reporting Tomcat 5.5.9. Now I'm working on deploying a .war file programatically: public void registerWAR(String contextPath, String absolutePath) throws Exception {

Re: DeployTask Not Found - Configuration Problem with Ant and Tomcat

2005-05-18 Thread Tim Diggins
Hi Robert - I'm not sure why having the the catalina-ant.jar in your ant libs folder didn't work, but here's an extract from my build.xml, which works for me. (obviously you need to set $tomcat.home somewhere - I tend to do it in a properties file which I DON'T commit to my SCM repos, as it

DeployTask Not Found - Configuration Problem with Ant and Tomcat

2005-05-17 Thread Robert Sinner
I am sending this message as it was bounced back to me I apologize if for some reason you receive it twice. I am trying to install tomcat on red hat enterprise server 8 with ant and apache. However when trying to run ant (to compile a simple servlet I get the following error). Using the simple

Two instances configuration

2005-05-12 Thread Diogo Martinez
Hi, does anybody know how to set up two instances of Tomcat in a same machine, listening to different ports? I already tried to configure server.xml as following: ... Connector className=org.apache.coyote.tomcat4.CoyoteConnector acceptCount=100 bufferSize=2048 compression=off

RE: Two instances configuration

2005-05-12 Thread Peter Crowther
From: Diogo Martinez [mailto:[EMAIL PROTECTED] does anybody know how to set up two instances of Tomcat in a same machine, listening to different ports? As well as configuring the connector, check and change the shutdown port (near the top of conf/server.xml). Each instance needs a

Re: How to change hostname in tomcat configuration

2005-05-11 Thread Lutz Zetzsche
Hi Mandar, Am Dienstag, 10. Mai 2005 20:13 schrieb Mandar Vaidya: I was trying for the second option, Here is how my server.xml file Engine defaultHost=techserv name=Catalina Host appBase=webapps name=techserv Logger

RE: How to change hostname in tomcat configuration

2005-05-11 Thread Mandar Vaidya
Thanks Lutz. I worked Mandar -Original Message- From: Lutz Zetzsche [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 2:58 AM To: Tomcat Users List Subject: Re: How to change hostname in tomcat configuration Hi Mandar, Am Dienstag, 10. Mai 2005 20:13 schrieb Mandar Vaidya

How to change hostname in tomcat configuration

2005-05-10 Thread Mandar Vaidya
Hi, I'm trying to change hostname on the tomcat server from localhost to my server name. After I change it in server.xml, I'm able to go to http://servername:8080 url, but I'm not able to go to http://servername:8080/admin . It gives me error. Aprreciate any help regarding this.

Re: How to change hostname in tomcat configuration

2005-05-10 Thread Lutz Zetzsche
are not configured in this configuration file. This name MUST match the name attributes of one of the Host elements nested immediately inside. ! Best wishes Lutz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: How to change hostname in tomcat configuration

2005-05-10 Thread Mandar Vaidya
List Subject: Re: How to change hostname in tomcat configuration Hi Mandar, Mandar Vaidya schrieb: I'm trying to change hostname on the tomcat server from localhost to my server name. After I change it in server.xml, I'm able to go to http://servername:8080 url, but I'm not able to go

Question on JNDI configuration

2005-05-02 Thread John MccLain
Is it possible to add a datasource to JNDI AFTER the server has started? We have a webapp that creates a DbConnection pool AFTER first user authentication. I would like to access this pool via JNDI conventions (because of 3rd party requirements), as well as through a context variable. John

Re: Question on JNDI configuration

2005-05-02 Thread Will Hartung
From: John MccLain [EMAIL PROTECTED] Sent: Monday, May 02, 2005 4:23 PM Is it possible to add a datasource to JNDI AFTER the server has started? We have a webapp that creates a DbConnection pool AFTER first user authentication. I would like to access this pool via JNDI conventions (because

Re: Question on JNDI configuration

2005-05-02 Thread QM
On Mon, May 02, 2005 at 04:23:05PM -0700, John MccLain wrote: : Is it possible to add a datasource to JNDI AFTER the server has started? If you create the DataSource yourself, yes, you can bind it. I had to test the same thing tonight, so I'll share an excerpt of my stub code. The short story

Application configuration

2005-04-29 Thread Andrea Aime
Hi, I have a set of property files that allow me to configure my application. They contain things like file system locations, database access parameters and so on. Now, I would like to put them outside the war file in order to make installation easier for people not used to web app deployements,

Re: Application configuration

2005-04-29 Thread Dave Butler
Andrea Aime wrote: Hi, I have a set of property files that allow me to configure my application. They contain things like file system locations, database access parameters and so on. Now, I would like to put them outside the war file in order to make installation easier for people not used to

Re: Tomcat 5 and SSL Configuration

2005-04-29 Thread jejones
I do not know the answer to your question. Sorry. -jrj Bruce Perryman wrote: Cool. I think other CAs have the same policy. How many times can you revoke/renew with Verisign? Is it only once? - To unsubscribe, e-mail: [EMAIL

Re: Application configuration

2005-04-29 Thread Will Hartung
From: Dave Butler [EMAIL PROTECTED] Sent: Friday, April 29, 2005 8:39 AM Andrea Aime wrote: I have a set of property files that allow me to configure my application. They contain things like file system locations, database access parameters and so on. Now, I would like to put them

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread Bruce Perryman
Thanks, It worked, the only problem is that we failed to specify the RSA algorithm. Are we screwed for using DSA? --- Mark Thomas [EMAIL PROTECTED] wrote: The following steps should work (although I have only ever done this using my own CA). 1. Create tomcat key in your own keystore 2.

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread Mark Thomas
Bruce, Sorry. Don't know. I have only ever got it working using RSA. However, when I did this I got so many things wrong the first 20 or so times I tried it it could have been anything stopping it working. Mark Bruce Perryman wrote: Thanks, It worked, the only problem is that we failed to

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread jejones
Here is the complete steps to generate a cert for the Tomcat Webserver. I am listing the commands that I used, your keystore directory _will_ vary. keytool -genkey -keyalg RSA -alias tomcat keystore /path/to/.keystore password is changeit then keytool -certreq -keyalg RSA -alias tomcat keystore

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread Lapo TIN
Sent: Thursday, April 28, 2005 8:44 PM Subject: Re: Tomcat 5 and SSL Configuration Here is the complete steps to generate a cert for the Tomcat Webserver. I am listing the commands that I used, your keystore directory _will_ vary. keytool -genkey -keyalg RSA -alias tomcat keystore /path

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread Bruce Perryman
Thanks Mark, and all others, for your help. As I mentioned, we did get this to work. The only problem was that we didn't specify the keyalg param nor rsa so the default is dsa. I posted another question Is DSA OK, but no one seems to know. It appears that DSA doesn't handle encryption, but I'm

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread jejones
You can revoke/renew with verisign for NO CHARGE within 30days. FWIW: We specify RSA. Bruce Perryman wrote: Thanks Mark, and all others, for your help. As I mentioned, we did get this to work. The only problem was that we didn't specify the keyalg param nor rsa so the default is dsa. I

Re: Tomcat 5 and SSL Configuration

2005-04-28 Thread Bruce Perryman
Cool. I think other CAs have the same policy. How many times can you revoke/renew with Verisign? Is it only once? BTW, it appears a DSA encrypted server will cause a Netscape browser to throw an exception. Apparently Netscape only handles RSA. There are probably other clients servers that will

RE: apache + tomcat + JK connector configuration

2005-04-27 Thread Raghupathy,Gurumoorthy
http://www.one0.com/html/downloads.php Download the pdf ( nice ) / doc version Nice :o) Guru -Original Message- From: anshul shrivastava [mailto:[EMAIL PROTECTED] Sent: 26 April 2005 18:08 To: Tomcat Users List Subject: Re: apache + tomcat + JK connector configuration Importance: High

Re: apache + tomcat + JK connector configuration

2005-04-26 Thread anshul shrivastava
, 2005 6:26 PM Subject: RE: apache + tomcat + JK connector configuration Bob, Thank you but Apache doesn't start if I add this line. The Apache config I have is: LoadModule jk_module modules/mod_jk.so JkWorkersFile conf/workers.properties JkLogFile logs/mod_jk.log JkLogLevel debug JkMount /examples

RE: apache + tomcat + JK connector configuration

2005-04-26 Thread Caldarale, Charles R
From: anshul shrivastava [mailto:[EMAIL PROTECTED] Subject: Re: apache + tomcat + JK connector configuration I'm using Tomcat Apache Tomcat/5.0.16 Why such an old level? If you want to use the 5.0 branch, at least get the current version. Better yet, use 5.5. I read, it is better

Re: apache + tomcat + JK connector configuration

2005-04-26 Thread anshul shrivastava
List tomcat-user@jakarta.apache.org Sent: Tuesday, April 26, 2005 11:11 PM Subject: RE: apache + tomcat + JK connector configuration From: anshul shrivastava [mailto:[EMAIL PROTECTED] Subject: Re: apache + tomcat + JK connector configuration I'm using Tomcat Apache Tomcat/5.0.16 Why

Re: apache + tomcat + JK connector configuration

2005-04-26 Thread Ted Christensen
: Delphine Lê [EMAIL PROTECTED] To: 'Tomcat Users List' tomcat-user@jakarta.apache.org Sent: Monday, April 18, 2005 6:26 PM Subject: RE: apache + tomcat + JK connector configuration Bob, Thank you but Apache doesn't start if I add this line. The Apache config I have is: LoadModule jk_module modules

configuration tips / tomcat 4.1 / mod_jk2

2005-04-26 Thread mbneto
Hi, I am trying to understand what options should I configure in my tomcat/mod_jk2 enviroment in order to host jsp-enabled sites. I use apache 2 with virtual hosts. any tips would be great. - To unsubscribe, e-mail: [EMAIL

  1   2   3   4   5   6   7   8   9   10   >