Fw: Re: Tomcat Manager keeps asking for Authentication

2018-12-22 Thread Karen Goh
--- On Sun, 12/23/18, Karen Goh wrote: > From: Karen Goh > Subject: Re: Tomcat Manager keeps asking for Authentication > To: "Tomcat Users List" > Date: Sunday, December 23, 2018, 1:40 PM > > > On Sat, 12/22/18, Mark Thomas > wrote: > > Subjec

Re: Tomcat Manager keeps asking for Authentication

2018-12-22 Thread Karen Goh
On Sat, 12/22/18, Mark Thomas wrote: Subject: Re: Tomcat Manager keeps asking for Authentication To: users@tomcat.apache.org Date: Saturday, December 22, 2018, 7:56 PM On 22/12/2018 09:12, Karen Goh wrote: > > I am running Netbean 8.2 and

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Johan Compagner
If you use large heaps you should use G1 garbage collector And if you use that then I would set the min and Max to the same values *-server -Xms13G -Xmx13G **-XX:+UseG1GC* *To fully initialize the memory at once (g1 will figure it into compartments)* Op za 22 dec. 2018 13:35 schreef Dhaval Jai

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Dhaval Jaiswal
Application built in such a way that it consum memory and hence, it's exhaust all memory and results in crashing Java. Probably GC is not running when it reaches to its threshold. Is there a way I can call GC explicitly without affecting running application. I believe need to identify the memory c

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Olaf Kock
On 22.12.18 20:17, Dhaval Jaiswal wrote: > System has allocated all mentioned RAM. > > I assume 13 would be fine. Adding to John's question, what I forgot earlier: Another rule of thumb is to identify the *minimum* amount of memory that the application can run with, then add a bit of headroom. T

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread John Dale
Why are you requiring so much memory? On 12/22/18, Dhaval Jaiswal wrote: > System has allocated all mentioned RAM. > > I assume 13 would be fine. > > On Sat 22 Dec, 2018, 11:44 PM John Dale >> I agree with this tactic .. I do the same thing. >> >> Cheers. >> >> On 12/22/18, Olaf Kock wrote: >

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Dhaval Jaiswal
System has allocated all mentioned RAM. I assume 13 would be fine. On Sat 22 Dec, 2018, 11:44 PM John Dale I agree with this tactic .. I do the same thing. > > Cheers. > > On 12/22/18, Olaf Kock wrote: > > > > On 22.12.18 13:35, Dhaval Jaiswal wrote: > >> I am facing issue of crashing JAVA proc

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread John Dale
I agree with this tactic .. I do the same thing. Cheers. On 12/22/18, Olaf Kock wrote: > > On 22.12.18 13:35, Dhaval Jaiswal wrote: >> I am facing issue of crashing JAVA process and log files attached for >> the same. >> >> Server total RAM is 16 GB. >> >> catalina.sh having following setting. >

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Olaf Kock
On 22.12.18 13:35, Dhaval Jaiswal wrote: > I am facing issue of crashing JAVA process and log files attached for > the same.  > > Server total RAM is 16 GB. > > catalina.sh having following setting.  > export JAVA_MEM_OPTS="-Xms1g -Xmx15g -XX:MaxPermSize=1536m" > > Can some one help where could b

Re: Tomcat 9 missing org/apache/tomcat/util/file/ConfigurationSource

2018-12-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ed, On 12/21/18 07:47, Ed Zappulla wrote: > Agree. No errors on the down load, none on the unzip. I > configured Eclipse and got the startup error. Tomcat-util.jar was > just missing. So I tried versions from 1 to 14 from the archive > but they

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leon, On 12/22/18 08:19, Leon Rosenberg wrote: > You should provide at least Java version. Out of the blue you > should have at least 2Gb for the OS, so if your server is having 16 > Gb, your Xmx and MaxPermSize shouldn't be more then 14 G TOGETHER.

Re: 9.0.13 encrypted cluster traffic

2018-12-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Keiichi, On 12/21/18 02:58, Keiichi Fujino wrote: > 2018年12月21日(金) 12:11 Christopher Schultz > : > > Tim, > > On 12/20/18 10:18, Tim K wrote: > > I just downloaded and tried 9.0.14 but I'm still getting > the same BadPaddingException

Re: 9.0.13 encrypted cluster traffic

2018-12-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Tim, On 12/21/18 08:14, Tim K wrote: > On Thu, Dec 20, 2018, 10:11 PM Christopher Schultz < > ch...@christopherschultz.net wrote: > > Tim, > > On 12/20/18 10:18, Tim K wrote: > > I just downloaded and tried 9.0.14 but I'm still getting >

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Dhaval Jaiswal
Java version 8 On Sat 22 Dec, 2018, 6:49 PM Leon Rosenberg You should provide at least Java version. > Out of the blue you should have at least 2Gb for the OS, so if your server > is having 16 Gb, your Xmx and MaxPermSize shouldn't be more then 14 G > TOGETHER. Of course this only applies to v

Re: insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Leon Rosenberg
You should provide at least Java version. Out of the blue you should have at least 2Gb for the OS, so if your server is having 16 Gb, your Xmx and MaxPermSize shouldn't be more then 14 G TOGETHER. Of course this only applies to versions of java below 1.8, because there is no permspace in modern jvm

insufficient memory for the Java Runtime Environment to continue

2018-12-22 Thread Dhaval Jaiswal
I am facing issue of crashing JAVA process and log files attached for the same. Server total RAM is 16 GB. catalina.sh having following setting. export JAVA_MEM_OPTS="-Xms1g -Xmx15g -XX:MaxPermSize=1536m" Can some one help where could be the problem? Which threads are consuming memory. How can i

Re: Tomcat Manager keeps asking for Authentication

2018-12-22 Thread Mark Thomas
On 22/12/2018 09:12, Karen Goh wrote: I am running Netbean 8.2 and am trying to study a web project from github. It was stated that certain pages are constrained by the Tomcat Role, in order to view the Admin panel. So, what I did was to alter the Tomcat C:\Program Files\Apache Software Foun

Tomcat Manager keeps asking for Authentication

2018-12-22 Thread Karen Goh
I am running Netbean 8.2 and am trying to study a web project from github. It was stated that certain pages are constrained by the Tomcat Role, in order to view the Admin panel. So, what I did was to alter the Tomcat C:\Program Files\Apache Software Foundation\Apache Tomcat 8.0.27\conf\tomcat