Always app Java end with “Exit 143” Ubuntu

前端 未结 2 751
無奈伤痛
無奈伤痛 2020-12-06 10:19

I have an application in java, which is permanently pulled. Execute it as follows:

nohup ant> log.txt &

The problem is that last ind

2条回答
  •  暖寄归人
    2020-12-06 11:01

    Exit code 143 corresponds to SIGTERM, which is the signal sent by default when you run kill . Is it possible that another process or user is killing the application? Without more information it's difficult to suggest anything else.

提交回复
热议问题