-
1. Re: Segmentation Fault
jesper.pedersen Jun 15, 2012 2:30 PM (in response to johnsky)That is a JDK thing - always run with the latest release. If the problem still is there you will need to file a bug report to the vendor (I don't know what JDSK 6_2 is).
-
2. Re: Segmentation Fault
johnsky Jun 15, 2012 2:45 PM (in response to jesper.pedersen)My console says:
java version "1.6.0_02"
Java(TM) SE Runtime Environment (build 1.6.0_02-b05)
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_02-b05, mixed mode)
So I will try to convince the admin
Thank you for your quick replays
-
-
4. Re: Segmentation Fault
johnsky Jun 18, 2012 2:30 PM (in response to jesper.pedersen)Hallo
we couldnt change the jdk1.6.0_02 to a higher version, so I kept looking:
I figured out that I had to change the stack size...
Our config runs with -Xss=128k which is too small obviously, so I set it to 256k - that works.
During my research I encounterd this bug
http://bugs.sun.com/view_bug.do?bug_id=6434149
whichs says if you have a segmentation fault you should put
JAVA_OPTS="$JAVA_OPTS -Dsun.lang.ClassLoader.allowArraySyntax=true"
So that is Plan B if the first solution is not working.
Thanks for your help!