Core dump file is not generated

前端 未结 13 669
情书的邮戳
情书的邮戳 2020-11-28 06:46

Every time, my application crash a core dump file is not generated. I remember that few days ago, on another server it was generated. I\'m running the app u

相关标签:
13条回答
  • 2020-11-28 07:19

    The answers given here cover pretty well most scenarios for which core dump is not created. However, in my instance, none of these applied. I'm posting this answer as an addition to the other answers.

    If your core file is not being created for whatever reason, I recommend looking at the /var/log/messages. There might be a hint in there to why the core file is not created. In my case there was a line stating the root cause:

    Executable '/path/to/executable' doesn't belong to any package
    

    To work around this issue edit /etc/abrt/abrt-action-save-package-data.conf and change ProcessUnpackaged from 'no' to 'yes'.

    ProcessUnpackaged = yes
    

    This setting specifies whether to create core for binaries not installed with package manager.

    0 讨论(0)
提交回复
热议问题