I have a production Java application hosted on Jetty. During the last week or so, the system has crashed, leaving only a single message accessed with "dmesg":

java[20551]: segfault at 000000004315dd78 rip 00002aae428a018d rsp 000000004315dd60 error 6

Can anyone point me in the correct direction as to what this means ?

link|improve this question

0% accept rate
feedback

1 Answer

Are your javacand java the same version? This is usually the problem when you get this error.

You can get the versions like this: which -a java and which -a javac

link|improve this answer
Thanks for you reply. The path and version is /usr/local/java/jdk1.6.0_18. Once if we get the segfault error the jetty server goes down, so how to fix this? Please suggest.It causing a lot of problem. – sathishkumar Mar 31 '11 at 14:47
But are both the same version? – Bart De Vos Mar 31 '11 at 15:14
Yes both are the same version below i mentioned: # java -version java version "1.6.0_18" # javac -version javac 1.6.0_18 – sathishkumar Apr 1 '11 at 5:09
# which -a java /usr/bin/java /usr/local/java/jdk1.6.0_18/bin/java # which -a javac /usr/local/java/jdk1.6.0_18/bin/javac – sathishkumar Apr 1 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

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