Questions tagged [jvm-crash]

Crashes in the JVM, commonly caused by buggy native code in libraries.

This tag is about debugging s and other crashes in the Java Virtual Machine (). A JVM crash is identified by the message A fatal error has been detected by the Java Runtime Environment followed by the error.

Such crashes are commonly caused by buggy native code (using ) in libraries, or sometimes missing ies. Crashes due to bugs in the JVM itself are also possible, though less likely.

When a JVM crash occurs, most of the time it will create a log file named hs_err_pidXXXX.log where XXXX is a number. It is important that you include the contents of it when you post a question regarding such a crash.

Do not use this tag for internal JVM exceptions, for example:

Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
261 questions
2
votes
1 answer

Problem in Eclipse 3.5 and ubuntu 9.10

Someone knows why eclipse close when i click any button. This is because when i try to do something, update eclipse or whatever, eclipse close and it gives me this log... # # A fatal error has been detected by the Java Runtime Environment: # # …
ki0
  • 367
  • 2
  • 5
  • 15
2
votes
1 answer

JVM crashes during JMagick readImage

While trying to use Jmagick to convert image to jpg format, the JVM crashed and this is the report. any suggestions how to figure out how we can fix the issue with Jmagick or anything to resolve this. JVM crash report # # A fatal error has been…
Gaurav Kohli
  • 326
  • 3
  • 6
2
votes
2 answers

Random JVM crash with stack only showing Hibernate data

For our web application we are experiencing some JVM crashes on a regular base. Until now we don't have a clue what could be the exact cause of the problem though. All crashes seem to have the same 'problematic frame' through, which makes us suspect…
Kenny Moens
  • 55
  • 1
  • 3
2
votes
1 answer

Java crash ! NTDLL.DLL when using jni and jpeg62.dll

Been trying to run pHash on java using jni and i have faced so many problems and solved them and now i am stuck at this place. i fixed all my dlls and my source code and everything is fine but when i try to run my java code using the dlls... JAVA…
2
votes
1 answer

What does oop mean in JVM crash report?

I have a JVM crash report and there're lines that say R13=0x00000007a22ba2fc is an oop What exactly is an oop? Is it an object?
0x56794E
  • 20,883
  • 13
  • 42
  • 58
2
votes
1 answer

Java jvm crashes without reason - runs with admin privileges

I've already tried to re-install Java several times, but it keeps crashing once starting my application. Other applications work fine (e.g. Scenebuilder). The JVM returns no error log file, the only thing that's possible to grab…
Dennis Fischer
  • 864
  • 11
  • 25
2
votes
2 answers

Eclipse doesn't start : JVM terminated. Exit code=14

Tried searching for a fix couldn't find one! I am running fedora 17 with : Eclipse(juno) version eclipse-platform.x86_64 1:4.2.1-2.fc17 A which java yields /usr/bin/java so eclipse is using the right one. A java -version yields…
ThinkingMonkey
  • 12,539
  • 13
  • 57
  • 81
2
votes
1 answer

JVM-Crash in JNI call ReleaseStringUTFChars, only on Windows 7, Windows XP fine

Here is an excerpt of C++ code that is called from a Java JVM via JNI: (JNIEnv *pJniEnv, jobject, jstring pDllName) { string dllName(pJniEnv->GetStringUTFChars(pDllName, NULL)); // stuff happens here like …
Tim van Beek
  • 385
  • 3
  • 12
2
votes
3 answers

looking for java .pdb files, analyze a crash hdmp file

I am trying to analyze .hdmp file (windows crash dump) that contains a java crash. I am seeing the stack dump crash and all the dlls/modules but not the java ones such as (jvm,nio,etc..). When I use windbg or Visual Studio it shouts about missing…
oded
  • 161
  • 2
  • 8
2
votes
1 answer

Need crash dump translation

The following is a crash dump I get which is resulted from an Java application crash. Does anyone have any idea of how to get around this situation? I can't get much out of this. It could be due to my limited experience. # # A fatal error has…
Sam
  • 2,702
  • 5
  • 31
  • 45
2
votes
2 answers

Swappiness in JVM

I stumbled upon some interesting problems last week where I noticed that the one of our production servers, which has Apache HTTP Server over Tomcat running, stopped, reporting an HTTP outage. On further investigating this issue it seemed like it…
Keshi
  • 906
  • 10
  • 23
1
vote
3 answers

Tomcat 7.0.25 apr jre crash

I just upgraded from tomcat 6.0.29 to 7.0.25 using native apr. Tomcat has crashed a few times with the report below. None of it means much to me other than that the crash seemed to happen when using zip, which is could be to do with the gzip setting…
iainmac999
  • 1,569
  • 2
  • 13
  • 12
1
vote
1 answer

JVM crashes using JOGL, vertex buffer objects, and trying to free the vbo in a finalize method

I have some CAD software I've written. Each component being drawn has a set of vertex buffer objects. If the component gets deleted, I have to free the vertex buffer objects in the finalize method such as: if (gl != null) { Integer[]…
vextorspace
  • 934
  • 2
  • 10
  • 25
1
vote
1 answer

How to troubleshoot Java JDWP fatal errors

I have a large legacy webapp that runs on java11/oracle/tomcat 9. We're exploring the feasibility of transitioning to postgres. I'm running locally on my laptop (windows 11 enterprise), intellij+tomcat, postgres on docker. When using intellij to…
1
vote
0 answers

JVM crashed with a fatal error. Problematic frame is C [libc.so.6+0x10b294] __clock_gettime+0x24

I am writing a web app, which has a feature that writes data to an Excel file (using Apache POI tools) and gets downloaded by customers. The app runs pretty well on my Linux VM, but crashes on k8s each time a download request gets called. Below is…
ayumi
  • 11
  • 2