I just switched from 5.0.28 to 5.5.8 on my Fedora server. The app works fine 
but after some inactivity of approx 7 hours I try to log in and get the 
following error:

at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
[tdx] WARN [http-8080-Processor23] JDBCRealm.getPassword(555) | Exception 
retrieving password for "molecool"

If I recycle tomcat it works fine and as long as I keep hitting the server I 
don't get this problem. However, if I am gone for a few hours and come back I 
encounter this problem. Now, I did some digging online and others have 
encountered this as well. But I was under the impression that this bug was 
fixed and that 5.5.8 wasn't leaking connections anymore. Just for sh...ts and 
giggles I tried 5.5.7 and it's got the same problem.

Here's my cofiguration:

<Context path="" docBase="ROOT" debug="99" reloadable="true"
    antiJARLocking="true" antiResourceLocking="true">

    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
          driverName="@DB-DRIVERNAME@"
       connectionURL="@DB-URL@"
      connectionName="@DB-USERNAME@" connectionPassword="@DB-PASSWORD@"
           userTable="app_user" userNameCol="username" userCredCol="password"
       userRoleTable="user_role" roleNameCol="role_name" />

    <Resource name="jdbc/tdx" auth="Container" type="javax.sql.DataSource"
              maxActive="100" maxIdle="30" maxWait="10000"
              driverClassName="@DB-DRIVERNAME@"
              username="@DB-USERNAME@" password="@DB-PASSWORD@" 
              url="@DB-URL@"
              defaultAutoCommit="true" removeAbandoned="true" 
              removeAbandonedTimeout="60" logAbandoned="true"/>
</Context>

I would really appreciate some help here. There appears to be some 
jakarta-****.jar file that fixes this, but I was unable to dig it up. I also 
tried to get tomcat out of cvs, but the build process seems to be more than I 
can handle at this point (missing references).

This site needs to be up and running by Tuesday - ANY pointers would be very 
welcome ;-)

Michael

Reply via email to