JDBC connection pooling maxActive or MaxTotal

2020-01-03 Thread Dave Bothwell
Hello, I am using Tomcat 8.5.11 with JDBC connection pooling. Based on the documentation it is clear that DBCP pooling has changed the maxActive attribute to maxTotal. However it is unclear, based on this document https://tomcat.apache.org/tomcat-8.5-doc/jdbc-pool.html, if JDBC pooling has also

Re: Let's Encrypt with Tomcat?

2020-01-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 1/2/20 19:45, James H. H. Lampert wrote: > Am I to understand that Tomcat 8.5.40 can use the ".cer," > ".ca.crt" and ".key" files directly, instead of the Java > Keystore file? > > On 12/30/19 1:41 PM, Peter Kreuser wrote: >>

Re: cvs update -dP

2020-01-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Zahid, On 1/2/20 22:20, zahid wrote: > Document update suggestion. > > Keeping in mind the documents are implied as step by step > instructions. > > The instruction |cvs update -dP could get complicated for some > developers due to |missing

Re: Let's Encrypt with Tomcat?

2020-01-03 Thread James H. H. Lampert
On 1/3/20 9:57 AM, Christopher Schultz wrote: Is perhaps the AWS firewall (which is a Load Balancer, right?) redirecting the port? Easy test (from the server): $ telnet localhost 443 I hadn't thought of that. But alas, that instance doesn't have Telnet on it. If it connects, you have

Re: JDBC connection pooling maxActive or MaxTotal

2020-01-03 Thread Dave Bothwell
Chris, That was very helpful. Thank you Dave On Fri, Jan 3, 2020 at 5:29 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Dave, > > On 1/3/20 13:47, Dave Bothwell wrote: > > I am using Tomcat 8.5.11 with JDBC connection

Re: JDBC connection pooling maxActive or MaxTotal

2020-01-03 Thread zahid
chris, Is commons-dbcp-2.x   a Database pooling component for any container Jetty,Jboss tomcat   etc. ? is commons-dbcp-2.x a third option, separate option from the two pooling options [tomcat-pool and commons-pool] you mentioned ? On 03/01/2020 23:21, Dave Bothwell wrote: Chris, That

Re: JDBC connection pooling maxActive or MaxTotal

2020-01-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dave, On 1/3/20 13:47, Dave Bothwell wrote: > I am using Tomcat 8.5.11 with JDBC connection pooling. Based on > the documentation it is clear that DBCP pooling has changed the > maxActive attribute to maxTotal. However it is unclear, based on >

Re: JDBC connection pooling maxActive or MaxTotal

2020-01-03 Thread zahid
|I hope these descriptions of the setting helps you in making a decision as to the value. | |maxActive| (int) The maximum number of active connections that can be allocated from this pool at the same time. The default value is |100||| | | On 03/01/2020 18:47, Dave Bothwell wrote: Hello,