1

Anyone knows what is the initialTomcat5.5 heap size?

Marquinio
  • 4,601
  • 13
  • 45
  • 68
  • This question is best answered by googling for "tomcat 5.5 heap size". The answer is, it varies. Use 'ps auxwww | grep java' on *nix to see. – Spike Gronim Oct 28 '10 at 02:14

1 Answers1

3

Do you mean default "max heap size" ? It depends on the underlying JVM version (not on Tomcat version).

Upto JDK 1.5 it is 64 Mb for the process.

In Java 6, the default maximum heap size is determined by the amount of system memory present.

shinynewbike
  • 2,334
  • 5
  • 28
  • 42