• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tomcat Error hangs Server

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I have tomcat 4.1.29 server and jdk1.2 version installed on my server and using SQL-SERVER as database server. Recently i made some database driver updates and caused some issues and then rollback the driver. But after the update and rollback I found lot of strange issues raised on my server.

My CPU USAGE is 100% and MEM USAGE is very heavy, both are utilized by tomcat and SQL-SERVER and also i am getting the following error at my tomcat logs.

Could anyone guide me how can i overcome this issue.

Log
----
Created catalinaLoader in: C:\Program Files\Apache\Tomcat 4.1\server\lib
Feb 21, 2006 6:11:08 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on port 8080
Feb 21, 2006 6:11:11 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
Feb 21, 2006 6:11:11 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
Feb 21, 2006 6:11:13 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources', returnNull=true
Could not retrieve necessary codes from database.
Feb 21, 2006 6:25:26 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on port 8080
Feb 21, 2006 6:25:31 AM org.apache.jk.common.ChannelSocket init
INFO: JK2: ajp13 listening on /0.0.0.0:8009
Feb 21, 2006 6:25:32 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=16/1735 config=C:\Program Files\Apache\Tomcat 4.1\conf\jk2.properties
AbandonedObjectPool is used (org.apache.commons.dbcp.AbandonedObjectPool@1dcb3cd)
LogAbandoned: true
RemoveAbandoned: true
RemoveAbandonedTimeout: 480
com.jnetdirect.jsql.u: DBComms::transmit exception:java.net.SocketException: Connection reset by peer: socket write error
at com.jnetdirect.jsql.h.a(Unknown Source)
at com.jnetdirect.jsql.aq.a(Unknown Source)
at com.jnetdirect.jsql.ae.a(Unknown Source)
at com.jnetdirect.jsql.ak.i(Unknown Source)
at com.jnetdirect.jsql.ak.executeUpdate(Unknown Source)
at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:233)

Thanks
Lara
 
Ranch Hand
Posts: 245
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You're using 1.2!!??? Sun killed that off a while ago. You're using a newer Tomcat - why so ancient of a JDK?

I would first upgrade to at least the 1.4.2 JDK's. I can't imagine that anyone would still be using a 1.2 JDK and would be able to assist you. 1.2 is not even officially supported under XP and above.
reply
    Bookmark Topic Watch Topic
  • New Topic