5

我正在尝试在虚拟内存限制为 2GB 的环境中使用 java,ulimit -v 2000000但出现内存错误。java -version在此环境中运行会给出:

$ java -version
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

不管我设置得有多低-Xmx,我都无法让java在这个环境下运行。但是,如果ulimit -v设置为2.5GB,那么我可以设置-Xmx为250m,但不能更高。

$ java -Xmx250m -version
java version "1.7.0_19"
OpenJDK Runtime Environment (rhel-2.3.9.1.el6_4-x86_64)
OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)

$ java -Xmx251m -version
#
# There is insufficient memory for the Java Runtime Environment to continue.
# pthread_getattr_np
java version "1.7.0_19"
OpenJDK Runtime Environment (rhel-2.3.9.1.el6_4-x86_64)
OpenJDK 64-Bit Server VM (build 23.7-b01, mixed mode)# An error report file with more information is saved as:
# ~/hs_err_pid12079.log

是否可以在使用ulimit限制虚拟内存的环境中使用java?

4

1 回答 1

3

这是所有可用 JVM(oracle 或 openjdk,版本 6、7、8)中的一个众所周知的巨大错误。此处报告: https ://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1241926 https://bugs.openjdk.java.net/browse/JDK-8071445

不幸的是,Java 开发人员没有解决方案。解决方案:拼命使用各种 java 选项或停止使用 java 和基于 java 的应用程序:-(

于 2015-07-15T13:26:24.187 回答