What killed my process and why?

后端 未结 14 983
误落风尘
误落风尘 2020-11-22 09:34

My application runs as a background process on Linux. It is currently started at the command line in a Terminal window.

Recently a user was executing the application

14条回答
  •  死守一世寂寞
    2020-11-22 10:20

    Try:

    dmesg -T| grep -E -i -B100 'killed process'
    

    Where -B100 signifies the number of lines before the kill happened.

    Omit -T on Mac OS.

提交回复
热议问题