RE: No response from Tomcat 5 with IIS

2004-06-10 Thread George
Hello.
(BYes. I'm using MS SQL7.
(BI could find turn around today.
(BI'll report this in another message I'll post you.
(BThank you very much.
(B
(BGeorge
(B
(B--- Carl Olivier [EMAIL PROTECTED] Wrote:
(B Hi.
(B 
(B Are you doing any database work?  Is it possible
(B that you have a database
(B lock happening in the middle of a transaction?
(B 
(B Carl
(B 
(B -Original Message-
(B From: George [mailto:[EMAIL PROTECTED] 
(B Sent: 09 June 2004 02:33 AM
(B To: Tomcat Users List
(B Subject: RE: No response from Tomcat 5 with IIS
(B 
(B 
(B Thank you very much Raymond.
(B However all memories you pointed out are enough.
(B CPU load is almost zero.
(B During this problem is happenning, I create another
(B small
(B test application and run. And I could get the result
(B that "Tomcat is running
(B properly". What's happen??? I think only my original
(B application just hung
(B up. No error messages. No warnnings. No logs. To
(B recover this problem, is to
(B reboot Tomcat.
(B 
(B Any suggestion would be appreciated.
(B 
(B George
(B 
(B --- "STOCKHOLM, Raymond" [EMAIL PROTECTED]
(B wrote:
(B Maybe you are running low in memory, and the GC is
(B  taking all the process.
(B  check :
(B  long totalMemory =
(B  Runtime.getRuntime().totalMemory();
(B  long freeMemory =
(B  Runtime.getRuntime().freeMemory();
(B  long maxMemory =
(B Runtime.getRuntime().maxMemory();
(B  log.info("totalMemory="+totalMemory);
(B  log.info("freeMemory ="+freeMemory);
(B  log.info("maxMemory  ="+maxMemory);
(B  
(B  -Message d'origine-
(B  De$BA~(B: George [mailto:[EMAIL PROTECTED]
(B  Envoy$BC)A~(B: mardi 8 juin 2004 17:31
(B  $B%F%D(B : [EMAIL PROTECTED]
(B  Objet$BA~(B: Re: No response from Tomcat 5 with IIS
(B  
(B  
(B  Hello! all.
(B  Please give me any advice since this issue is top
(B  urgent
(B  for me.
(B  Any suggenstion would be appreciated for me.
(B  Thank you very much.
(B  George
(B  
(B  --- Reply from George [EMAIL PROTECTED]:
(B   Hi!
(B   I'm having following problem.
(B   
(B   Configuration
(B   Tomcat 5.0.24 running on Windows 2000 server and
(B  IIS
(B   5,
(B   JK2 2.0.4
(B   The server is put under hardware load balancer
(B   "BIG-IP" by
(B   F5 inc.
(B   
(B   Problem
(B   Sometime when the system load is high (about 10
(B to
(B   20
(B   users are using the aplication), tomcat does not
(B   respond
(B   suddenly.
(B   No event log has written.
(B   
(B   Is there anyone who can teach me any tunr
(B arround?
(B   
(B   Please help me!
(B   
(B   George
(B   
(B   
(B  
(B __
(B   Do You Yahoo!?
(B   http://bb.yahoo.co.jp/
(B   
(B   
(B  
(B 
(B
(B-
(B   To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B   For additional commands, e-mail:
(B   [EMAIL PROTECTED]
(B   
(B  
(B  __
(B  Do You Yahoo!?
(B  http://bb.yahoo.co.jp/
(B  
(B  
(B 
(B
(B-
(B  To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B  For additional commands, e-mail:
(B  [EMAIL PROTECTED]
(B  
(B  
(B 
(B __
(B Do You Yahoo!?
(B http://bb.yahoo.co.jp/
(B 
(B 
(B
(B-
(B To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B For additional commands, e-mail:
(B [EMAIL PROTECTED]
(B 
(B
(B-
(B To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B For additional commands, e-mail:
(B [EMAIL PROTECTED]
(B 
(B
(B__
(BDo You Yahoo!?
(Bhttp://bb.yahoo.co.jp/
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

RE: No response from Tomcat 5 with IIS

2004-06-09 Thread STOCKHOLM, Raymond
It seems the problem is local to your web application.

Create a test JSP in your web app, and try accessing it.
If it isn't responding, maybe all the available Thread for your web app are used,
maybe you have a dead lock somewhere...

I think that the number of threads available is specific to your Connector :

   Connector className=org.apache.coyote.tomcat4.CoyoteConnector
   port=8080 minProcessors=20 maxProcessors=400
   enableLookups=true redirectPort=8443
   acceptCount=100 debug=0 connectionTimeout=2
   useURIValidationHack=false disableUploadTimeout=true /

try increasing it... (default is min=5 max=75)
  

-Message d'origine-
De: George [mailto:[EMAIL PROTECTED]
Envoy: mercredi 9 juin 2004 02:33
: Tomcat Users List
Objet: RE: No response from Tomcat 5 with IIS


Thank you very much Raymond.
However all memories you pointed out are enough.
CPU load is almost zero.
During this problem is happenning, I create another small
test application and run. And I could get the result that
Tomcat is running properly.
What's happen???
I think only my original application just hung up.
No error messages. No warnnings. No logs.
To recover this problem, is to reboot Tomcat.

Any suggestion would be appreciated.

George

--- STOCKHOLM, Raymond [EMAIL PROTECTED] wrote:
Maybe you are running low in memory, and the GC is
 taking all the process.
 check :
   long totalMemory =
 Runtime.getRuntime().totalMemory();
   long freeMemory =
 Runtime.getRuntime().freeMemory();
   long maxMemory = Runtime.getRuntime().maxMemory();
   log.info(totalMemory=+totalMemory);
   log.info(freeMemory =+freeMemory);
   log.info(maxMemory  =+maxMemory);
 
 -Message d'origine-
 De: George [mailto:[EMAIL PROTECTED]
 Envoy: mardi 8 juin 2004 17:31
  : [EMAIL PROTECTED]
 Objet: Re: No response from Tomcat 5 with IIS
 
 
 Hello! all.
 Please give me any advice since this issue is top
 urgent
 for me.
 Any suggenstion would be appreciated for me.
 Thank you very much.
 George
 
 --- Reply from George [EMAIL PROTECTED]:
  Hi!
  I'm having following problem.
  
  Configuration
  Tomcat 5.0.24 running on Windows 2000 server and
 IIS
  5,
  JK2 2.0.4
  The server is put under hardware load balancer
  BIG-IP by
  F5 inc.
  
  Problem
  Sometime when the system load is high (about 10 to
  20
  users are using the aplication), tomcat does not
  respond
  suddenly.
  No event log has written.
  
  Is there anyone who can teach me any tunr arround?
  
  Please help me!
  
  George
  
  
  __
  Do You Yahoo!?
  http://bb.yahoo.co.jp/
  
  
 

-
  To unsubscribe, e-mail:
  [EMAIL PROTECTED]
  For additional commands, e-mail:
  [EMAIL PROTECTED]
  
 
 __
 Do You Yahoo!?
 http://bb.yahoo.co.jp/
 
 

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

__
Do You Yahoo!?
http://bb.yahoo.co.jp/


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



RE: No response from Tomcat 5 with IIS

2004-06-09 Thread Carl Olivier
Hi.
(B
(BAre you doing any database work?  Is it possible that you have a database
(Block happening in the middle of a transaction?
(B
(BCarl
(B
(B-Original Message-
(BFrom: George [mailto:[EMAIL PROTECTED] 
(BSent: 09 June 2004 02:33 AM
(BTo: Tomcat Users List
(BSubject: RE: No response from Tomcat 5 with IIS
(B
(B
(BThank you very much Raymond.
(BHowever all memories you pointed out are enough.
(BCPU load is almost zero.
(BDuring this problem is happenning, I create another small
(Btest application and run. And I could get the result that "Tomcat is running
(Bproperly". What's happen??? I think only my original application just hung
(Bup. No error messages. No warnnings. No logs. To recover this problem, is to
(Breboot Tomcat.
(B
(BAny suggestion would be appreciated.
(B
(BGeorge
(B
(B--- "STOCKHOLM, Raymond" [EMAIL PROTECTED] wrote:
(BMaybe you are running low in memory, and the GC is
(B taking all the process.
(B check :
(B   long totalMemory =
(B Runtime.getRuntime().totalMemory();
(B   long freeMemory =
(B Runtime.getRuntime().freeMemory();
(B   long maxMemory = Runtime.getRuntime().maxMemory();
(B   log.info("totalMemory="+totalMemory);
(B   log.info("freeMemory ="+freeMemory);
(B   log.info("maxMemory  ="+maxMemory);
(B 
(B -Message d'origine-
(B De$BA~(J: George [mailto:[EMAIL PROTECTED]
(B Envoy$BC)A~(J: mardi 8 juin 2004 17:31
(B $B%F%D(J : [EMAIL PROTECTED]
(B Objet$BA~(J: Re: No response from Tomcat 5 with IIS
(B 
(B 
(B Hello! all.
(B Please give me any advice since this issue is top
(B urgent
(B for me.
(B Any suggenstion would be appreciated for me.
(B Thank you very much.
(B George
(B 
(B --- Reply from George [EMAIL PROTECTED]:
(B  Hi!
(B  I'm having following problem.
(B  
(B  Configuration
(B  Tomcat 5.0.24 running on Windows 2000 server and
(B IIS
(B  5,
(B  JK2 2.0.4
(B  The server is put under hardware load balancer
(B  "BIG-IP" by
(B  F5 inc.
(B  
(B  Problem
(B  Sometime when the system load is high (about 10 to
(B  20
(B  users are using the aplication), tomcat does not
(B  respond
(B  suddenly.
(B  No event log has written.
(B  
(B  Is there anyone who can teach me any tunr arround?
(B  
(B  Please help me!
(B  
(B  George
(B  
(B  
(B  __
(B  Do You Yahoo!?
(B  http://bb.yahoo.co.jp/
(B  
(B  
(B 
(B
(B-
(B  To unsubscribe, e-mail: [EMAIL PROTECTED]
(B  For additional commands, e-mail:
(B  [EMAIL PROTECTED]
(B  
(B 
(B __
(B Do You Yahoo!?
(B http://bb.yahoo.co.jp/
(B 
(B 
(B
(B-
(B To unsubscribe, e-mail: [EMAIL PROTECTED]
(B For additional commands, e-mail:
(B [EMAIL PROTECTED]
(B 
(B 
(B
(B__
(BDo You Yahoo!?
(Bhttp://bb.yahoo.co.jp/
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

No response from Tomcat 5 with IIS

2004-06-08 Thread George
Hi!
(BI'm having following problem.
(B
(BConfiguration
(BTomcat 5.0.24 running on Windows 2000 server and IIS 5,
(BJK2 2.0.4
(BThe server is put under hardware load balancer "BIG-IP" by
(BF5 inc.
(B
(BProblem
(BSometime when the system load is high (about 10 to 20
(Busers are using the aplication), tomcat does not respond
(Bsuddenly.
(BNo event log has written.
(B
(BIs there anyone who can teach me any tunr arround?
(B
(BPlease help me!
(B
(BGeorge
(B
(B
(B__
(BDo You Yahoo!?
(Bhttp://bb.yahoo.co.jp/
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

Re: No response from Tomcat 5 with IIS

2004-06-08 Thread George
Hello! all.
(BPlease give me any advice since this issue is top urgent
(Bfor me.
(BAny suggenstion would be appreciated for me.
(BThank you very much.
(BGeorge
(B
(B--- Reply from George [EMAIL PROTECTED]:
(B Hi!
(B I'm having following problem.
(B 
(B Configuration
(B Tomcat 5.0.24 running on Windows 2000 server and IIS
(B 5,
(B JK2 2.0.4
(B The server is put under hardware load balancer
(B "BIG-IP" by
(B F5 inc.
(B 
(B Problem
(B Sometime when the system load is high (about 10 to
(B 20
(B users are using the aplication), tomcat does not
(B respond
(B suddenly.
(B No event log has written.
(B 
(B Is there anyone who can teach me any tunr arround?
(B 
(B Please help me!
(B 
(B George
(B 
(B 
(B __
(B Do You Yahoo!?
(B http://bb.yahoo.co.jp/
(B 
(B 
(B
(B-
(B To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B For additional commands, e-mail:
(B [EMAIL PROTECTED]
(B 
(B
(B__
(BDo You Yahoo!?
(Bhttp://bb.yahoo.co.jp/
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]

RE: No response from Tomcat 5 with IIS

2004-06-08 Thread STOCKHOLM, Raymond
Maybe you are running low in memory, and the GC is taking all the process.
check :
long totalMemory = Runtime.getRuntime().totalMemory();
long freeMemory = Runtime.getRuntime().freeMemory();
long maxMemory = Runtime.getRuntime().maxMemory();
log.info(totalMemory=+totalMemory);
log.info(freeMemory =+freeMemory);
log.info(maxMemory  =+maxMemory);

-Message d'origine-
De: George [mailto:[EMAIL PROTECTED]
Envoy: mardi 8 juin 2004 17:31
: [EMAIL PROTECTED]
Objet: Re: No response from Tomcat 5 with IIS


Hello! all.
Please give me any advice since this issue is top urgent
for me.
Any suggenstion would be appreciated for me.
Thank you very much.
George

--- Reply from George [EMAIL PROTECTED]:
 Hi!
 I'm having following problem.
 
 Configuration
 Tomcat 5.0.24 running on Windows 2000 server and IIS
 5,
 JK2 2.0.4
 The server is put under hardware load balancer
 BIG-IP by
 F5 inc.
 
 Problem
 Sometime when the system load is high (about 10 to
 20
 users are using the aplication), tomcat does not
 respond
 suddenly.
 No event log has written.
 
 Is there anyone who can teach me any tunr arround?
 
 Please help me!
 
 George
 
 
 __
 Do You Yahoo!?
 http://bb.yahoo.co.jp/
 
 

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

__
Do You Yahoo!?
http://bb.yahoo.co.jp/


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



RE: No response from Tomcat 5 with IIS

2004-06-08 Thread George
Thank you very much Raymond.
(BHowever all memories you pointed out are enough.
(BCPU load is almost zero.
(BDuring this problem is happenning, I create another small
(Btest application and run. And I could get the result that
(B"Tomcat is running properly".
(BWhat's happen???
(BI think only my original application just hung up.
(BNo error messages. No warnnings. No logs.
(BTo recover this problem, is to reboot Tomcat.
(B
(BAny suggestion would be appreciated.
(B
(BGeorge
(B
(B--- "STOCKHOLM, Raymond" [EMAIL PROTECTED] wrote:
(BMaybe you are running low in memory, and the GC is
(B taking all the process.
(B check :
(B   long totalMemory =
(B Runtime.getRuntime().totalMemory();
(B   long freeMemory =
(B Runtime.getRuntime().freeMemory();
(B   long maxMemory = Runtime.getRuntime().maxMemory();
(B   log.info("totalMemory="+totalMemory);
(B   log.info("freeMemory ="+freeMemory);
(B   log.info("maxMemory  ="+maxMemory);
(B 
(B -Message d'origine-
(B DeÁþ: George [mailto:[EMAIL PROTECTED]
(B EnvoyéÁþ: mardi 8 juin 2004 17:31
(B à: [EMAIL PROTECTED]
(B ObjetÁþ: Re: No response from Tomcat 5 with IIS
(B 
(B 
(B Hello! all.
(B Please give me any advice since this issue is top
(B urgent
(B for me.
(B Any suggenstion would be appreciated for me.
(B Thank you very much.
(B George
(B 
(B --- Reply from George [EMAIL PROTECTED]:
(B  Hi!
(B  I'm having following problem.
(B  
(B  Configuration
(B  Tomcat 5.0.24 running on Windows 2000 server and
(B IIS
(B  5,
(B  JK2 2.0.4
(B  The server is put under hardware load balancer
(B  "BIG-IP" by
(B  F5 inc.
(B  
(B  Problem
(B  Sometime when the system load is high (about 10 to
(B  20
(B  users are using the aplication), tomcat does not
(B  respond
(B  suddenly.
(B  No event log has written.
(B  
(B  Is there anyone who can teach me any tunr arround?
(B  
(B  Please help me!
(B  
(B  George
(B  
(B  
(B  __
(B  Do You Yahoo!?
(B  http://bb.yahoo.co.jp/
(B  
(B  
(B 
(B
(B-
(B  To unsubscribe, e-mail:
(B  [EMAIL PROTECTED]
(B  For additional commands, e-mail:
(B  [EMAIL PROTECTED]
(B  
(B 
(B __
(B Do You Yahoo!?
(B http://bb.yahoo.co.jp/
(B 
(B 
(B
(B-
(B To unsubscribe, e-mail:
(B [EMAIL PROTECTED]
(B For additional commands, e-mail:
(B [EMAIL PROTECTED]
(B 
(B 
(B
(B__
(BDo You Yahoo!?
(Bhttp://bb.yahoo.co.jp/
(B
(B
(B-
(BTo unsubscribe, e-mail: [EMAIL PROTECTED]
(BFor additional commands, e-mail: [EMAIL PROTECTED]