LInux 中 tomcat 部署项目报 java 内存溢出问题Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0

如果你 重复关闭 启动tomcat , 有时候会遇到 tomcat 启动不起来

启动程序报错: 
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000006fff80000, 2863661056, 0) failed; error=’Cannot allocate memory’ (errno=12) 
#

There is insufficient memory for the Java Runtime Environment to continue. # Native memory allocation (malloc) failed to allocate 2863661056 bytes for committing reserved memory. # An error report file with more information is saved as: # /home/raini/IdeaProjects/spark_mllib/hs_err_pid19206.log

内存不足: 减少启动程序所需内存,或加大内存,如关闭一些程序。

 有时候  不是内存的问题

是 重复 开启关闭 tomcat  原因造成的   java 进程没有及时关闭

此时 使用 ps -ef|grep java 

查看有多少个java进程

如果很多的话使用

pkill -9 java  杀死掉所有进程

猜你喜欢

转载自blog.csdn.net/xiaodujava/article/details/81100720