How to configure java memory for tomcat ?
Continuous Delivery Director 8.x
Example for Minimum memory 2048M and Maximum memory 4096M
On Linux :
In catalina.out following lines appears :
17-Jun-2024 15:01:28.012 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xms2048M
17-Jun-2024 15:01:28.012 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xmx4096M
On Windows :
For Windows the file to create is setenv.bat with this line :
set CATALINA_OPTS="-Xms2048M -Xmx4096M"