JVM Crash due to SIGSEGV

前端 未结 3 398
囚心锁ツ
囚心锁ツ 2021-01-11 16:50

Our server hung because of a SIGSEGV fault..

A fatal error has been detected by the Java Runtime Environment:

  SIGSEGV (0xb) at pc=0x00007ff5c7195aa         


        
3条回答
  •  北海茫月
    2021-01-11 17:16

    It is telling you that an error occurred in code loaded from libdtagentcore.so. More specifically it happened in function named restrict and at offset 0x506f6. The first offset mentioned (0xb7aaa) is offset within the library itself. If it was build with debugging symbols (-g) you can look at the code that caused the exception, on Linux something along the lines of:

    addr2line -e libdtagentcore.so -C -f 0xb7aaa
    

    In case this is read by someone on Windows, see https://community.oracle.com/blogs/kohsuke/2009/02/19/crash-course-jvm-crash-analysis

    More details in https://www.youtube.com/watch?v=jd6dJa7tSNU

提交回复
热议问题