I want to increase the available heap space for Jenkins. But as it is installed as a service I don“t know how to do it.

link|improve this question

76% accept rate
feedback

3 Answers

up vote 11 down vote accepted

In your Jenkins installation directory there is a jenkins.xml, where you can set various options. Add the parameter -Xmx with the size you want to the arguments-tag (or increase the size if its already there).

link|improve this answer
feedback

From the Jenkins wiki:

The JVM launch parameters of these Windows services are controlled by an XML file jenkins.xml and jenkins-slave.xml respectively. These files can be found in $JENKINS_HOME and in the slave root directory respectively, after you've install them as Windows services.

The file format should be self-explanatory. Tweak the arguments for example to give JVM a bigger memory.

https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+as+a+Windows+service

link|improve this answer
feedback

If you installed Jenkins on Redhat - for example

https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+RedHat+distributions

then edit /etc/sysconfig/jenkins e.g.

sudo vi /etc/sysconfig/jenkins

and set JENKINS_JAVA_OPTIONS to

JENKINS_JAVA_OPTIONS="-Djava.awt.headless=true -Xmx2048 --XX:MaxPermSize=512m"

then restart Jenkins

sudo /sbin/service jenkins restart

You can verify the Java options that Jenkins is using by installing the Jenkins monitor plugin

https://wiki.jenkins-ci.org/display/JENKINS/Monitoring

via Manage Jenkins / Manage Plugins and then navigating to Managing Jenkins / Monitoring of Hudson / Jenkins master to use monitoring to determine how much memory is available to Jenkins.

If you are getting an out of memory error when Jenkins calls Maven, it may be necessary to set MAVEN_OPTS via Manage Jenkins / Configure System e.g.

-Xmx2048m  -XX:MaxPermSize=512m
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.