JVM-tomcat异常报错

启动tomcat 的时候,某一时刻突然 崩掉,bin文件夹中多了hs_err_pid217456.log日志文件。

# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 32744 bytes for ChunkPool::allocate
# Possible reasons:
#   The system is out of physical RAM or swap space
#   In 32 bit mode, the process size limit was hit
# Possible solutions:
#   Reduce memory load on the system
#   Increase physical memory or swap space
#   Check if swap backing store is full
#   Use 64 bit Java on a 64 bit OS
#   Decrease Java heap size (-Xmx/-Xms)
#   Decrease number of Java threads
#   Decrease Java thread stack sizes (-Xss)
#   Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
#  Out of Memory Error (allocation.cpp:273), pid=217456, tid=0x0000000000047df0
#
# JRE version: Java(TM) SE Runtime Environment (8.0_162-b12) (build 1.8.0_162-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.162-b12 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. 
#

其实错误及解决方式已经提示的很明显,最终通过减小堆内存大小得以解决。
一开始还没注意这块错误提示,因为都是以#开头,以为是注释用,都在下面找错误,开来看去都是配置信息,花了半小时才搞定…

你可能感兴趣的:(JVM)