Esse problema pode ser solucionado em: O tamanho máximo de heap da JVM acima de 1,8 GB impedirá o ColdFusion MX de começando
On 32-bit processor machines, the largest contiguous memory address space the operating system can allocate to a process is 1.8GB. Because of this, the maximum heap size can only be set up to 1.8GB. On 64-bit processor machines, the 1.8 GB limit does not apply, as 64-bit processor machines have a larger memory address space.
To correct this issue, the jvm.config file must be modified:
- Open the cf_root/runtime/bin/jvm.config file in a text editor.
- Locate the section labeled "# Arguments to VM".
- Modify the
-Xmx
variable to set a maximum heap size less than 1.8GB.
For example:-Xmx1024m
- Save the file.
- Restart ColdFusion.
Cuidado para não usar um valor muito grande para o computador. Isso pode ter um impacto negativo no desempenho do Windows e em outros produtos instalados.