我正在尝试运行名为Openbravo的开源ERP软件,我正在使用Amazon EC2 Web服务。我已使用ssh通过VMWare终端成功登录到系统。那部分一切都很好。但是,当我执行以下命令以停止并重新启动tomcat服务时,在部署上下文[失败]时出现错误。
请让我知道您需要哪种日志文件。我有catalina.log的内容

通过将tomcat.sh Xmx1024M更改为Xmx2048M,我增加了内存,但仍然是相同的错误。

# /tmp/hs_err_pid6079.log
CompilerOracle: excludenet/sf/jasperreports/engine/export/JRGridLayout.horizontallyMergeEmptyCells
Aug 14, 2015 2:49:20 PM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["ajp-bio-127.0.0.1-8009"]
Aug 14, 2015 2:49:21 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1007 ms
Aug 14, 2015 2:49:21 PM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Catalina
Aug 14, 2015 2:49:21 PM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.52 (Ubuntu)
Aug 14, 2015 2:49:21 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory /var/lib/tomcat/webapps/openbravo
OpenJDK 64-Bit Server VM warning: INFO: os::commit_memory(0x00000007b5f4b000, 196608, 0) failed; error='Cannot allocate mem$
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 196608 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /tmp/hs_err_pid6733.log

最佳答案

检查以确保JVM工作目录所在的分区没有足够的空间(或者您正受到配额或类似限制)。由于日志文件失控而导致磁盘空间紧张时,我们多次出现此错误:服务器上有大量可用内存...磁盘空间非常低。

09-04 14:36