Does anyone ever experience random Hudson server crash ? see the following log:

ERROR: Failed to parse POMs
java.io.IOException: Cannot run program "env": java.io.IOException: error=12, Cannot allocate memory
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:459)
        at java.lang.Runtime.exec(Runtime.java:593)
        at java.lang.Runtime.exec(Runtime.java:431)
        at java.lang.Runtime.exec(Runtime.java:328)
        at org.codehaus.plexus.util.cli.CommandLineUtils.getSystemEnvVars(CommandLineUtils.java:250)
        at org.codehaus.plexus.util.cli.CommandLineUtils.getSystemEnvVars(CommandLineUtils.java:216)
        at org.apache.maven.project.interpolation.RegexBasedModelInterpolator.<init>(RegexBasedModelInterpolator.java:63)
        at sun.reflect.GeneratedConstructorAccessor120.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at org.codehaus.plexus.component.factory.java.JavaComponentFactory.newInstance(JavaComponentFactory.java:44)
        at org.codehaus.plexus.DefaultPlexusContainer.createComponentInstance(DefaultPlexusContainer.java:1464)
        at org.codehaus.plexus.component.manager.AbstractComponentManager.createComponentInstance(AbstractComponentManager.java:93)

it is now installed on 32 bit Debian 5 Linux with 4 GB RAM along with SVN and Sonar, I'd like to know what would be the root cause of this problem ? I'm planning to migrate it to Ubuntu 10.04 LTS 64 bit with SVN and Sonar as well, but this time I'll give 8 GB for the RAM.

any kind of suggestion and best practice in installing Hudson server will be appreciated.

Thanks.

link|improve this question

71% accept rate
feedback

2 Answers

4GB of RAM seems enough to run Hudson, but it seems you are running out of memory due to too many processes.

Try increase your swap partition size.

Your swap partition should generally be the size of your RAM, if not more.

PS: What is it currently at?

link|improve this answer
it is currently at 2 GB and i have created script to restart the service every 11 PM to prevent this error. – Albert Widjaja Nov 8 '10 at 22:59
If you can, try to increase your swap to at least 4GB. – Sagar Nov 9 '10 at 13:30
feedback

I have the same problem, my server config is:

$ free -m
             total       used       free     shared    buffers     cached
Mem:          1036        982         53          0         13         39
-/+ buffers/cache:        929        106
Swap:         2047        833       1214

This is how I fixed the problem (under root):

echo 1 > /proc/sys/vm/overcommit_memory
link|improve this answer
Hi, is that 32 / 64 bit server ? – Albert Widjaja Dec 6 '10 at 2:56
64, I suppose... – yegor256 Dec 13 '10 at 8:04
feedback

Your Answer

 
or
required, but never shown

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