Re: New Tomcat 6 Deployment

2012-05-31 Thread Ron Lift
Thanks for the feedback. Having a meeting today to discuss installing JavaMonitor on the RHEL6 in place of tomcat for deployment for external applications. We are still using OSX 10.6.7 server with JavaMonitor for internal apps On Wed, May 30, 2012 at 3:16 PM, John Huss johnth...@gmail.com wrote:

Re: New Tomcat 6 Deployment

2012-05-30 Thread Ron Lift
I have been doing some more research and I am beginning to think this post describes the cause of the issue http://stackoverflow.com/questions/3320400/to-prevent-a-memory-leak-the-jdbc-driver-has-been-forcibly-unregistered Has anyone deployed and application to production with either Tomcat

Re: New Tomcat 6 Deployment

2012-05-30 Thread Pascal Robert
Le 2012-05-30 à 10:04, Ron Lift a écrit : I have been doing some more research and I am beginning to think this post describes the cause of the issue http://stackoverflow.com/questions/3320400/to-prevent-a-memory-leak-the-jdbc-driver-has-been-forcibly-unregistered Has anyone deployed

Re: New Tomcat 6 Deployment

2012-05-30 Thread John Huss
I would go with wotaskd/monitor. You can more easily run multiple instances; each instance gives you another database connection. Alternatively, you can set the property: er.extensions.ERXObjectStoreCoordinatorPool.maxCoordinators=3 And this will give you a pool of database connections

Re: New Tomcat 6 Deployment

2012-05-30 Thread Ramsey Gurley
On May 30, 2012, at 7:13 AM, John Huss wrote: I would go with wotaskd/monitor. You can more easily run multiple instances; each instance gives you another database connection. Alternatively, you can set the property: er.extensions.ERXObjectStoreCoordinatorPool.maxCoordinators=3

Re: New Tomcat 6 Deployment

2012-05-30 Thread John Huss
Does that mean you have a fix coming? :-) On Wed, May 30, 2012 at 10:16 AM, Ramsey Gurley ramseygur...@gmail.comwrote: On May 30, 2012, at 7:13 AM, John Huss wrote: I would go with wotaskd/monitor. You can more easily run multiple instances; each instance gives you another database

Re: New Tomcat 6 Deployment

2012-05-30 Thread Ramsey Gurley
Given the way the pool is implemented, it is not fixable AFAICT. The EC is only connected to one OSC to run cleanup. So snapshots get inserted into all OSCs, but only get removed from one. The bigger the pool, the bigger the leak. Persistent session storage with multiple stateless instances

Re: New Tomcat 6 Deployment

2012-05-30 Thread John Huss
On Wed, May 30, 2012 at 10:43 AM, Ramsey Gurley ramseygur...@gmail.comwrote: Given the way the pool is implemented, it is not fixable AFAICT. The EC is only connected to one OSC to run cleanup. So snapshots get inserted into all OSCs, but only get removed from one. The bigger the pool, the

Re: New Tomcat 6 Deployment

2012-05-30 Thread Ramsey Gurley
On May 30, 2012, at 9:31 AM, John Huss wrote: On Wed, May 30, 2012 at 10:43 AM, Ramsey Gurley ramseygur...@gmail.com wrote: Given the way the pool is implemented, it is not fixable AFAICT. The EC is only connected to one OSC to run cleanup. So snapshots get inserted into all OSCs,

Re: New Tomcat 6 Deployment

2012-05-30 Thread John Huss
On Wed, May 30, 2012 at 10:43 AM, Ramsey Gurley ramseygur...@gmail.comwrote: Given the way the pool is implemented, it is not fixable AFAICT. The EC is only connected to one OSC to run cleanup. So snapshots get inserted into all OSCs, but only get removed from one. The bigger the pool, the

Re: New Tomcat 6 Deployment

2012-05-29 Thread D Tim Cummings
I have noticed these messages too and would like to know if there is anything that can be done about them Tim On 29/05/2012, at 23:31, Ron Lift rpgi...@gmail.com wrote: At work we are migrating from RHEL 5 to RHEL 6 and also upgrading to Tomcat 6. When I deploy the current application