VM Could not reserve enough space for object heap

∥☆過路亽.° 提交于 2019-12-24 08:52:12

问题


I have just upgraded to Jenkins 1.500 on a windows machine. I also have a windows slave with 8GB RAM. I have made a remote connection to this slave and started it from the Jenkins webinterface (using the JNLP launch button).

It shows up just fine on Jenkins and I have assigned some jobs to it. One of the jobs calls a java application with the following vm args:

-XX:MaxPermSize=512m -Xmx1024m

but the job fails with this error:

Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine.

If I run the job locally on the slave it works fine. Any ideas why the build fails on the windows slave when triggered through jenkins?

The job ran fine on the slave BEFORE the upgrade.

The slave is running: java version "1.6.0_34" Java(TM) SE Runtime Environment (build 1.6.0_34-b04) Java HotSpot(TM) 64-Bit Server VM (build 20.9-b04, mixed mode)


回答1:


The solution to this is: In your maven installation modify the mvn file and add the below :

export MAVEN_OPTS=-Xmx1024m



来源:https://stackoverflow.com/questions/14654328/vm-could-not-reserve-enough-space-for-object-heap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!