System Configuration
Modifying the Heap Size
Linux/*nix
- Stop Cascade CMS
- Edit the cascade.sh
file (found in the Cascade CMS root directory).
- Add/Modify the
-Xmx
and-Xms
parameters inJAVA_OPTS
. For example, the following line sets both the minimum and maximum heap size to 2048M:export JAVA_OPTS="-Xmx2048M -Djava.awt.headless=true -Dfile.encoding=UTF-8"
- Start Cascade CMS.
Windows (service)
- Right-click the CascadeCMSw.exe
file (found in tomcat/bin) and select the Run as Administrator option.
- In the configuration UI click on the Java tab.
- Enter a value for the Initial memory pool field.
- Enter a value for the Maximum memory pool field.
- Click Apply.
- Restart the Cascade CMS service.
Windows (command line)
- Stop Cascade CMS.
- Edit the
cascade.bat file (found in the Cascade CMS root directory).
- Add/Modify the
-Xmx
and-Xms
parameters inJAVA_OPTS
. For example, the following line sets both the minimum and maximum heap size to 2048M:set JAVA_OPTS="-Xms2048M -Xmx2048M -Djava.awt.headless=true -Dfile.encoding=UTF-8"
- Start Cascade CMS.