Daniel Mikusa wrote:
----- Original Message -----
Hi

Can any one give a cue as to why tomcat is taking such a long time to
start up on windows-7 64 bit machine, while the same used to startup
in mere seconds on a 32 bit windows XP machine? I have pasted the
server startup console info below.

...



Jun 25, 2012 2:34:36 PM org.apache.catalina.startup.HostConfig
deployDescriptor
INFO: Deploying configuration descriptor ematrix.xml
INFO Default trace configuration file path available:
/D:/enoviaV6R2013x/server/distrib/ematrix/WEB-INF/classes/vplm/traces.txt
Notice: #4000050: Listening on MX_DEBUG_PORT 55877
log4j:WARN No appenders could be found for logger
(org.apache.axis.transport.http.AxisServlet).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig
for more info.
Jun 25, 2012 2:39:13 PM org.apache.catalina.startup.HostConfig
deployDescriptor
INFO: Deploying configuration descriptor host-manager.xml

The deployment of your app "ematrix" is consuming the majority of the time 
(according to the time stamps).  Try starting up Tomcat without that application deployed 
and see how fast it goes.


+1.
Emphasis : *your app* "ematrix".
Forget Tomcat per se, and try to figure out why *your app* is taking so long to 
start.
- maybe it is writing megabytes of data to this "trace file" that is mentioned
- maybe it is doing a DNS lookup of some host address, and your DNS is not properly configured, so it times out after a (long) while
- maybe it is using HTTPS, and is waiting for enough entropy
- maybe it must parse some huge XML data file, and does not have enough memory, so it is swapping in and out, or doing plenty of GC's
- etc..

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

Reply via email to