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
-Xmxand-Xmsparameters inJAVA_OPTS. For example, the following line sets both the minimum and maximum heap size to 4096M:export JAVA_OPTS="-Xms4096M -Xmx4096M -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
-Xmxand-Xmsparameters inJAVA_OPTS. For example, the following line sets both the minimum and maximum heap size to 4096M:set JAVA_OPTS="-Xms4096M -Xmx4096M -Djava.awt.headless=true -Dfile.encoding=UTF-8" - Start Cascade CMS.