how to configure Tomcat for leveraging browser caching?

2012-06-27 Thread Choudhury
Hi , 
 I ran Google's Page Speed(
https://developers.google.com/speed/pagespeed/ ) on our web app to analyze 
and optimize our web site .

One of the many items under Web Performance Best Practices (
https://developers.google.com/speed/docs/best-practices/caching#LeverageBrowserCaching
 
) as listed in Page Speed says To take advantage of the full benefits of 
caching consistently across all browsers, we recommend that you configure 
your web server to explicitly set caching headers and apply them to all 
cacheable static resources, not just a small subset (such as images). 
Cacheable resources include JS and CSS files, image files, and other 
binary object files (media files, PDFs, Flash files, etc.). In general, 
HTML is not static, and shouldn't be considered cacheable.
How do I configure tomcat to achieve the same ? I know it can be done via 
Filters by putting some HTTP headers but can we do it without touching 
code just by configuration ?

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: choudh...@labware.com
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Re: Maximum memory that can be assigned to Tomcat on windows platform

2011-11-30 Thread Choudhury
Hello , 
The question is not why I would use 32 bit JVM , the question is 
whether there is any maximum limit on memory for Tomcat and if yes why ?
Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: choudh...@labware.com
Web: www.labware.com

LabWare LIMS Solutions - Results Count



From:   Francis GALIEGUE f...@one2team.com
To: Tomcat Users List users@tomcat.apache.org
Date:   11/30/2011 01:51 PM
Subject:Re: Maximum memory that can be assigned to Tomcat on 
windows platform



On Wed, Nov 30, 2011 at 07:28,  choudh...@labware.com wrote:
 Hi ,
 Is there any cap on maximum memory that can be assigned to 
tomcat
 on 32 bit Windows machines ? I have found out that even if we have 8GB
 memory in the server , can not assign more 1.4/1.5 GB to Tomcat . I also
 found this thread which reinforces what I have been seeing ? We are 
using
 Tomcat 7.0.19 .

 www.theserverside.com/discussions/thread.tss?thread_id=48793


In any event, a 32bit JVM (1.6, I don't know for lower VMs) cannot
allocate more than 3 GB heap space.

With so much RAM, why do you still use a 32bit OS and JVM is the
question here.

-- 
Francis Galiegue
ONE2TEAM
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
f...@one2team.com
40 avenue Raymond Poincaré
75116 Paris

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org




Maximum memory that can be assigned to Tomcat on windows platform

2011-11-29 Thread Choudhury
Hi , 
 Is there any cap on maximum memory that can be assigned to tomcat 
on 32 bit Windows machines ? I have found out that even if we have 8GB 
memory in the server , can not assign more 1.4/1.5 GB to Tomcat . I also 
found this thread which reinforces what I have been seeing ? We are using 
Tomcat 7.0.19 . 

www.theserverside.com/discussions/thread.tss?thread_id=48793

Regards,

Subhrajyoti  Choudhury 
WebLIMS Developer 
Mobile: +919830079545
Mail: choudh...@labware.com
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Log 4j error on tomcat shutdown

2009-01-12 Thread Choudhury
Hi All,
During tomcat (version 6.0.18 with jdk 1.5) shutdown , I get 
the following error in the console :
log4j:ERROR LogMananger.repositorySelector was null likely due to error in 
class reloading, using NOPLoggerRepository.

Whats wrong here ? What does this mean and how do I resolve this ?

PS: I am using lo4j1.2.15.jar in my webapp's  WEB-INF/lib directory.

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: choudh...@labware.com
Web: www.labware.com

LabWare LIMS Solutions - Results Count

RE: Where to look for connection refused errors in Tomcat6.0.18 ?

2008-10-18 Thread Choudhury
Thanks Peter for your answer . you said :
 You *can never* see these errors in Tomcat, because Tomcat is never 
 aware that the connection was received.  The operating system's 
 TCP/IP stack has received the incoming SYN, tried to queue the 
 connection request on Tomcat's accept queue, failed, and simply 
 sends a RST to close the connection.

What do these jargons SYN and RST actually mean ?  I do not know TCP IP 
details . 

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Peter Crowther [EMAIL PROTECTED] wrote on 10/17/2008 06:45:13 
PM:

  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  If still more simultaneous requests are received, they are
  stacked up inside the server socket created by the Connector,
  up to the
  configured maximum (the value of the acceptCount attribute.
  Any further
  simultaneous requests will receive connection refused errors, until
  resources are available to process them.   So where can we
  expect to see those errors in Tomcat?
 
 You *can never* see these errors in Tomcat, because Tomcat is never 
 aware that the connection was received.  The operating system's 
 TCP/IP stack has received the incoming SYN, tried to queue the 
 connection request on Tomcat's accept queue, failed, and simply 
 sends a RST to close the connection.
 
 You *might* be able to monitor the total number of connection 
 refusals at the OS level.  Netstat on Windows will give you this, 
 for example, though it combines refusals due to load and refusals 
 due to no port being configured to accept a connection.
 
 - Peter
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


Where to look for connection refused errors in Tomcat6.0.18 ?

2008-10-17 Thread Choudhury
Hi,
  We are suspecting that during load testing with Jmeter , Tomcat 
6.0.18 in Java 1.6 in Windows  is experiencing more requests than it can 
handle . I have seen the documentation for the HTTP connector element and 
it says that If still more simultaneous requests are received, they are 
stacked up inside the server socket created by the Connector, up to the 
configured maximum (the value of the acceptCount attribute. Any further 
simultaneous requests will receive connection refused errors, until 
resources are available to process them.   So where can we expect to see 
those errors in Tomcat ? Which logs ? I am using tomcat with all its 
default configuration . I would like to understand more of this problem 
before I start tweaking certain paramters ...What is the actual role of 
the Http Connector element ?

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count

RE: Seek help for javax.servlet.ServletException: Java heap space

2008-10-01 Thread Choudhury
Hi Chuck,
   Why is it  usually better to set -Xms and -Xmx to the 
same value ? Can you please explain a little bit of this . Also there are 
some weird problems in running tomcat 6.0.18 with Jconsole remotely . It 
keeps giving me Connection refused error . Mark did mention about the 
new LifeCycleListener that we can expect to have out of the box in 6.0.19 
which is supposed to make life easy with using Jconsole but still then I 
don't have any clue to what I can do get going with Jconsole remotely .Any 
ideas ?BTW this is the thread that I am talking about here ..

http://www.mail-archive.com/users@tomcat.apache.org/msg51208.html

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count



Caldarale, Charles R [EMAIL PROTECTED] 
10/02/2008 10:02 AM
Please respond to
Tomcat Users List users@tomcat.apache.org


To
Tomcat Users List users@tomcat.apache.org
cc

Subject
RE: Seek help for javax.servlet.ServletException: Java heap space






 From: BruceLee [mailto:[EMAIL PROTECTED]
 Subject: Seek help for javax.servlet.ServletException: Java heap space

 I tried JAVA_OPTS -Xms128m -Xmx512m -Xss1024k -XX:MaxPermSize=128m.
 On my local machine, everything is fine without any JAVA_OPTS
 customization.

What JVM are you using on your hosting server?

What JVM are you using on your local machine?

1) Read this:
http://wiki.apache.org/tomcat/FAQ/Memory

2) Use JConsole to see what's really going on in the Tomcat heap on your 
hosting server while it's running.

3) If JConsole access isn't permitted, turn on -verbose:gc to get an idea 
of what's happening with the heap.

4) Turn on -XX:+HeapDumpOnOutOfMemoryError and use jhat to see what's 
consuming the space.  Look here for info on jhat:
http://java.sun.com/javase/6/docs/technotes/tools/share/jhat.html

5) The -Xss value seems rather high; you normally don't have to play with 
this.

6) It's usually better to set -Xms and -Xmx to the same value to avoid 
heap thrashing.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you 
received this in error, please contact the sender and delete the e-mail 
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




problem in running Jconsole remotely --Connection refused

2008-09-30 Thread Choudhury
Guys,
   I am facing problem in running Jconsole remotely . In my 
machine from where I am running Jconsole I have jdk1.6...I am trying to 
connect to TOmcat6.0.18 running on a windows 2003 server machine(with JDK 
1,5) ...I have a batch file with the following contents : When I execute 
the batch file Tomcat is starting okay. But when I am trying to run 
Jconsole to connect to the Tomcat , I am always getting a connection 
refused  error. I think I have set up the parameters correctly here ? 
Apart from this all the .bat files that comses bundled with Tomcat6.0.18 
are kept same.  I can ping the server from my machine without any problem 
.

set path=C:\PROGRA~1\Java\jdk1.5.0_05\bin
set JAVA_HOME=C:\PROGRA~1\Java\jdk1.5.0_05
set JAVA_OPTS=-Xms1024m -Xmx1024m
set CATALINA_OPTS=-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
SET CATALINA_HOME=E:\AppServer\tomcat\tomcat6.0.18
CD bin
startup

BTW there is no problem in connecting locally ...But I don't want that 
because I want to monitor TOmcat while a load test is on . So resources 
should be used sparingly in  the server .

Please suggest the way to generate any extra debug info that I can get to 
see why this connection refused error is happening . 


Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Re: problem in running Jconsole remotely --Connection refused

2008-09-30 Thread Choudhury
Have a look at this thread:
http://markmail.org/message/r4lwb4ipa6ssaawy

The second port is probably blocked by a firewall.
 I am not a system guy and have no idea about firewalls..It is a default 
Windows 2003 Server set up .So I am assuming that whatever is there is 
there by default and no further tweaking to the server was done . So do 
you think the default configuration can block the dynamically alloted port 
? 

The Listener I refer to is now in svn. See:
http://svn.apache.org/viewvc?rev=699523view=rev
So how woud I make it to work with the existing  tomcat 6.0.18 ?  How long 
would I have to wait to get it out of the box ( ie 6.0.19+)?

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count



Mark Thomas [EMAIL PROTECTED] 
09/30/2008 04:34 PM
Please respond to
Tomcat Users List users@tomcat.apache.org


To
Tomcat Users List users@tomcat.apache.org
cc

Subject
Re: problem in running Jconsole remotely --Connection refused






[EMAIL PROTECTED] wrote:
 Guys,
I am facing problem in running Jconsole remotely . In my 
 machine from where I am running Jconsole I have jdk1.6...I am trying to 
 connect to TOmcat6.0.18 running on a windows 2003 server machine(with 
JDK 
 1,5) ...I have a batch file with the following contents : When I execute 

 the batch file Tomcat is starting okay. But when I am trying to run 
 Jconsole to connect to the Tomcat , I am always getting a connection 
 refused  error. I think I have set up the parameters correctly here ? 
 Apart from this all the .bat files that comses bundled with Tomcat6.0.18 

 are kept same.  I can ping the server from my machine without any 
problem 
 .
 
 set path=C:\PROGRA~1\Java\jdk1.5.0_05\bin
 set JAVA_HOME=C:\PROGRA~1\Java\jdk1.5.0_05
 set JAVA_OPTS=-Xms1024m -Xmx1024m
 set CATALINA_OPTS=-Dcom.sun.management.jmxremote
 -Dcom.sun.management.jmxremote.port=
 -Dcom.sun.management.jmxremote.ssl=false
 -Dcom.sun.management.jmxremote.authenticate=false
 SET CATALINA_HOME=E:\AppServer\tomcat\tomcat6.0.18
 CD bin
 startup
 
 BTW there is no problem in connecting locally ...But I don't want that 
 because I want to monitor TOmcat while a load test is on . So resources 
 should be used sparingly in  the server .
 
 Please suggest the way to generate any extra debug info that I can get 
to 
 see why this connection refused error is happening . 

Have a look at this thread:
http://markmail.org/message/r4lwb4ipa6ssaawy

The second port is probably blocked by a firewall.

The Listener I refer to is now in svn. See:
http://svn.apache.org/viewvc?rev=699523view=rev

Mark



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: problem in running Jconsole remotely --Connection refused

2008-09-30 Thread Choudhury
No idea. Use netstat to find out what port it is using and then talk to
your network support folks.
 When the Tomcat server has started with the JMX agent attched to the 
JVM( Which I suppose it does) , I did a netstat at the server machine and 
nowhere I saw any entries with the port that I mentioned during startup of 
the JVM( with the -Dcom.sun.management.jmxremote.port=)...Should I 
netstat at the client machine also ( where Jconsole is running)after 
staring Jconsole?

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count



Mark Thomas [EMAIL PROTECTED] 
09/30/2008 06:12 PM
Please respond to
Tomcat Users List users@tomcat.apache.org


To
Tomcat Users List users@tomcat.apache.org
cc

Subject
Re: problem in running Jconsole remotely --Connection refused






[EMAIL PROTECTED] wrote:
 Have a look at this thread:
 http://markmail.org/message/r4lwb4ipa6ssaawy
 
 The second port is probably blocked by a firewall.
 I am not a system guy and have no idea about firewalls..It is a 
default 
 Windows 2003 Server set up .So I am assuming that whatever is there is 
 there by default and no further tweaking to the server was done . So do 
 you think the default configuration can block the dynamically alloted 
port 
 ?
No idea. Use netstat to find out what port it is using and then talk to
your network support folks.

 The Listener I refer to is now in svn. See:
 http://svn.apache.org/viewvc?rev=699523view=rev
 So how woud I make it to work with the existing  tomcat 6.0.18 ? 
In theory, if you download and compile trunk, you should be able to add 
the
three new files (2 class files and one properties file) for the listener 
to
$CATALINA_HOME/lib/org/apache/catalina/mbeans

 How long 
 would I have to wait to get it out of the box ( ie 6.0.19+)?
I need to propose it for 6.0.19 and then it needs 3 more +1 votes than -1
votes before it gets added. There also needs to be a 6.0.19 release for
which there are no plans at present.

Mark



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Jconsole working without using any extra System property with Tomcat6.0 started using Intellij Idea 7.0

2008-09-29 Thread Choudhury
Hi Guys,
I am running tomcat 6.0 which is confgured through 
Intellij Idea . My objective was to run Jconsole to see it in action . 
Basically I didn't tinker with the catalina.bat file(whatever comes 
bundled with Tomcat) at all . Intellij uses the catalina.bat as a startup 
and and as shutdown script . So nowhere I set the 
-Dcom.sun.management.jmxremote parameter that needs to be used in order 
to attach the JMX agent to the Java app in order to get some results using 
the Jconsole. But when I run tomcat through Intellij Idea and when I start 
Jconsole , it is detecting  org.apache.catalina.startup.Bootstrap start  
as one of the local process 

Who is setting the -Dcom.sun.management.jmxremote parameter in my case ? 
Please reply . 

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Re: Jconsole working without using any extra System property with Tomcat6.0 started using Intellij Idea 7.0

2008-09-29 Thread Choudhury
Thanks Mark .I got my answer in the the following line in the document 
mentioned by you:

 In other words, any application that is started in the Java SE 6 HotSpot 
VM is detected automatically by JConsole, and does not need to be started 
using the above command-line option. 

Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count



Mark Thomas [EMAIL PROTECTED] 
09/29/2008 04:36 PM
Please respond to
Tomcat Users List users@tomcat.apache.org


To
Tomcat Users List users@tomcat.apache.org
cc

Subject
Re: Jconsole working without using any extra System property with 
Tomcat6.0  started using Intellij Idea 7.0






[EMAIL PROTECTED] wrote:
 Hi Guys,
 I am running tomcat 6.0 which is confgured through 
 Intellij Idea . My objective was to run Jconsole to see it in action . 
 Basically I didn't tinker with the catalina.bat file(whatever comes 
 bundled with Tomcat) at all . Intellij uses the catalina.bat as a 
startup 
 and and as shutdown script . So nowhere I set the 
 -Dcom.sun.management.jmxremote parameter that needs to be used in order 

 to attach the JMX agent to the Java app in order to get some results 
using 
 the Jconsole. But when I run tomcat through Intellij Idea and when I 
start 
 Jconsole , it is detecting  org.apache.catalina.startup.Bootstrap start 
 
 as one of the local process 
 
 Who is setting the -Dcom.sun.management.jmxremote parameter in my case 
? 
No-one. com.sun.management.jmxremote=true by default. See
http://java.sun.com/javase/6/docs/technotes/guides/management/agent.html

Mark



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Tomcat6.0.18+Log entries upon shutting down TomCat

2008-09-23 Thread Choudhury
Hi All,
  My first question in this forum . I am load testing our 
webapp using Jmeter . The test was configured to simulate  50 simultaneous 
users . After running the test for about 18hours or so , I decided to 
shutdown Tomcat  and after executing shutdown.bat file , I got the 
following messages inside catalina.2008-09-23.log . At the time when I 
stopped Tomcat, Jmeter was showing as all the 50 threads up and running .
My question :

1. What this line INFO: Waiting for 253,020 instance(s) to be deallocated 
means ?
2. Are these messages worrisome from the application point of view ?
 .

Sep 23, 2008 1:53:38 PM org.apache.coyote.http11.Http11Protocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8080
Sep 23, 2008 1:53:39 PM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina
Sep 23, 2008 1:53:39 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 253,020 instance(s) to be deallocated
Sep 23, 2008 1:53:40 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 253,016 instance(s) to be deallocated
Sep 23, 2008 1:53:41 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 253,015 instance(s) to be deallocated
Sep 23, 2008 1:53:41 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 42 instance(s) to be deallocated
Sep 23, 2008 1:53:42 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 42 instance(s) to be deallocated
Sep 23, 2008 1:53:43 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 42 instance(s) to be deallocated
Sep 23, 2008 1:53:43 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 7,570 instance(s) to be deallocated
Sep 23, 2008 1:53:44 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 7,570 instance(s) to be deallocated
Sep 23, 2008 1:53:45 PM org.apache.catalina.core.StandardWrapper unload
INFO: Waiting for 7,570 instance(s) to be deallocated
Sep 23, 2008 1:53:53 PM org.apache.coyote.http11.Http11Protocol destroy
INFO: Stopping Coyote HTTP/1.1 on http-8080


Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count

Re: Tomcat6.0.18+Log entries upon shutting down TomCat

2008-09-23 Thread Choudhury
Guys,
   As a load tester should I have to worry about the INFO 
messages mentioned below in this thread I am getting no clue as to 
where they creep from ?Is it Tomcat problem or our application problem? 
Any insights ?
Regards,

Subhrajyoti 
Mobile: +919830079545
Mail: [EMAIL PROTECTED]
Web: www.labware.com

LabWare LIMS Solutions - Results Count



Heiko Klein [EMAIL PROTECTED] 
09/23/2008 03:52 PM
Please respond to
Tomcat Users List users@tomcat.apache.org


To
Tomcat Users List users@tomcat.apache.org
cc

Subject
Re: Tomcat6.0.18+Log entries upon shutting down TomCat






Hi Subhrajyoti,

I don't know an answer for your question, but I got exactly the same 
problems after upgrading from Tomcat 6.0.14 to 6.0.18. This problem 
happenend when using APR. After switching back to 6.0.14, my problem 
disappeared. Are you using APR, too? I think this is worrisome for an 
application, because my tomcat started to freeze completely after all 
threads had been in this 'waiting for deallocation' state.

Best regards,

Heiko

[EMAIL PROTECTED] wrote:
 Hi All,
   My first question in this forum . I am load testing our 
 webapp using Jmeter . The test was configured to simulate  50 
simultaneous 
 users . After running the test for about 18hours or so , I decided to 
 shutdown Tomcat  and after executing shutdown.bat file , I got the 
 following messages inside catalina.2008-09-23.log . At the time when I 
 stopped Tomcat, Jmeter was showing as all the 50 threads up and running 
.
 My question :
 
 1. What this line INFO: Waiting for 253,020 instance(s) to be 
deallocated 
 means ?
 2. Are these messages worrisome from the application point of view ?
  .
 
 Sep 23, 2008 1:53:38 PM org.apache.coyote.http11.Http11Protocol pause
 INFO: Pausing Coyote HTTP/1.1 on http-8080
 Sep 23, 2008 1:53:39 PM org.apache.catalina.core.StandardService stop
 INFO: Stopping service Catalina
 Sep 23, 2008 1:53:39 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 253,020 instance(s) to be deallocated
 Sep 23, 2008 1:53:40 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 253,016 instance(s) to be deallocated
 Sep 23, 2008 1:53:41 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 253,015 instance(s) to be deallocated
 Sep 23, 2008 1:53:41 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 42 instance(s) to be deallocated
 Sep 23, 2008 1:53:42 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 42 instance(s) to be deallocated
 Sep 23, 2008 1:53:43 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 42 instance(s) to be deallocated
 Sep 23, 2008 1:53:43 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 7,570 instance(s) to be deallocated
 Sep 23, 2008 1:53:44 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 7,570 instance(s) to be deallocated
 Sep 23, 2008 1:53:45 PM org.apache.catalina.core.StandardWrapper unload
 INFO: Waiting for 7,570 instance(s) to be deallocated
 Sep 23, 2008 1:53:53 PM org.apache.coyote.http11.Http11Protocol destroy
 INFO: Stopping Coyote HTTP/1.1 on http-8080
 
 
 Regards,
 
 Subhrajyoti 
 Mobile: +919830079545
 Mail: [EMAIL PROTECTED]
 Web: www.labware.com
 
 LabWare LIMS Solutions - Results Count

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Configuring httpd and tomcat for individual user accounts

2008-03-06 Thread Choudhury, Sutanay
I'm trying to configure a system (Solaris/Linux) so individual
developers run their own tomcat instances by setting the CATALINA_BASE
to their individual directories. They would be using different ports for
starting their tomcat instance, and we could preassign that. I would
like to configure the Apache web server (version 2.0) so that a request
as /~USER_NAME/webapps/USER_WEBAPP_NAME gets forwarded to the
appropriate tomcat instance. I would appreciate if one can give me some
pointers on how to do this.

Thanks,

--Sutanay


How to configure tomcat SSL with pem file

2006-06-30 Thread Sujit Choudhury
 I am running tomcat server and would like to have SSL support.  I have
a key signed by verisign which looks as follows:
./ssl-cert-check -i -c finalfile.pem

HostIssuerStatus   Expires
Days Left
--- - 
--- -
FILE:finalfile.pem  RSA Data Security ValidSep 16
2006 78

However, I can not use import command as it gives 
keytool error: java.lang.Exception: Input not an X.509 certificate

I presume pem file is not X.509 file.  I would be grateful if somebody
can let me know how I can configure server.xml file or an alternative
way to use the import command.

Many thanks
--
Sujit Choudhury
ISLS
University of Westminster
Ext 3851 


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat webapp directory on virtual host

2006-01-29 Thread N Tapas Kumar Choudhury



hi.
  i m new for using tomcat.i had instaled tomcat in 
my computer.but i dont how to set classpath...plz any 
of one know how to set class path for tomcat then plz reply 
me..

waiting 4 ur response..
thanks and regards


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]