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
-1
votes
1 answer

My application crashes in production environment but work fine at development environment

I have a problem in production environment. My application start and restart after about 4 minutes. My application work fine in development environment and only in production environment its behavior it. Log of jvm when it crashes as following: # #…
Sam
  • 6,770
  • 7
  • 50
  • 91
-1
votes
2 answers

Could not create the JVM: JVM log location

I deploy an application via Java Webstart (using Oracle JDK/JRE 1.7 + Java FX 2). It works fine for most users, however one of them sometimes (not always) gets this error when launching the application: Error: Could not create the Java Virtual…
assylias
  • 321,522
  • 82
  • 660
  • 783
-2
votes
1 answer

JVM Crash - Windows 10 - Need help to understand the log file

I upgraded my SO to Windows 10 few weeks ago. After this my jvm keep crashing when im on netbeans. Crash Log Need some guidance.
-2
votes
2 answers

JVM crash when java.nio.DirectByteBuffer trying to free memory in GC

When I was running a Apache Spark job, which few lines of input data, the executor JVM crashed due to free java.nio.DirectByteBuffer in the GC: Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j sun.misc.Unsafe.freeMemory(J)V+0 j …
gpcuster
  • 29
  • 1
  • 1
  • 4
-2
votes
1 answer

Can any one tell me how to crash tomcat deliberately with java out of heap exception

I am looking for a code which will deliberately crash my Tomcat Server. EDIT (moved from comments) I did this but it still doesnot crash ArrayList list = new ArrayList(); for (int i = 0; i < Integer.MAX_VALUE; i++) { list.add(new Object()); }…
-3
votes
1 answer

LG G4 crashes on start of Lunar Lander-based Android game

I wrote an Android game based on Google's Lunar Lander example (using the Android Canvas for 2D drawing). The game has worked fine on all Android devices since 2009, except users have recently reported that it fails to start on the LG G4. Sometimes…
Luke
  • 5,329
  • 2
  • 29
  • 34
1 2 3
17
18