Tomcat 内存参数设置

There is insufficient memory for the Java Runtime Environment to continue.

报错信息如下 :

#

# There is insufficient memory for the Java Runtime Environment to continue.

# Native memory allocation (malloc) failed to allocate 1293536 bytes for Chunk::new

# An error report file with more information is saved as:

# D:\Tools\Tomcat\apache-tomcat-8.0.26\bin\hs_err_pid9192.log

[error occurred during error reporting , id 0xc0000005]

Disconnected from the target VM, address: '127.0.0.1:49585', transport: 'socket'

Tomcat默认可以使用的内存为128MB,对于访问数比较多、比较吃内存的应用来说,这是不够的。我们可以通过调整Java虚拟机的启动参数来增加Tomcat可使用的内存。
 
下面就是众所周知的两个参数
-Xms<size>    JVM初始化堆的大小
-Xmx<size>    JVM堆的最大值
 
比如,我想设置初始内存大小为128M,最多占用1G,就是下面的设置:
-Xms128m
-Xmx1024m
 
在Linux/Unix下,可以通过在 {tomcat_dir}/bin/catalina.sh 中增加或修改 JAVA_OPTS 来达到:
JAVA_OPTS="-Xms128m -Xmx1024m"
 
在Windows的免安装版本,可以通过在 {tomcat_dir}/bin/catalina.bat 中增加或修改 JAVA_OPTS  来达到:
set JAVA_OPTS=-Xms128m -Xmx1024m

Tomcat 内存参数设置_第1张图片


设置之后,查看进程管理挥发现,内存大小很接近Xmx这个值


你可能感兴趣的:(tomcat内存设置)