https://issues.apache.org/bugzilla/show_bug.cgi?id=45630

           Summary: Increasing Database Connections after Redeployment
           Product: Tomcat 6
           Version: 6.0.18
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Manager application
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


After undeploy/deploy via the manager application the number of oracle db
connections increase and the old connections are remaining on the db server.
When the tc server is going to shut down the db connections are closed.

Oracle Version: 10.2.0.2
JDBC Driver: Oracle-9.2.0.5

Context setup:

<?xml version="1.0" encoding="UTF-8"?>
<Context privileged="true"  antiJARLocking="true" antiResourceLocking="true">

<Resource       name="jdbc/myDb"
                        auth="Container"
                        type="javax.sql.DataSource"
                        maxActive="10"
                        maxIdle="7"     
                        minIdle="1"     
                        maxWait="15000" 
                        username="myusername"   
                        password="mypassword"   
                        driverClassName="oracle.jdbc.driver.OracleDriver"       
                        url="jdbc:oracle:thin:@db-host:1521:db-instance"
                        testOnBorrow="true"     
                        removeAbandoned="true"  
                        removeAbandonedTimeout="120"    
                        validationQuery="select count(sysdate)from dual"
                        logAbandoned="true"  
        />

</Context>


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

Reply via email to