PHP script is killed without explanation

前端 未结 5 726
失恋的感觉
失恋的感觉 2021-01-19 17:22

I\'m starting my php script in the following way:

bash  
cd \'path\'   
php -f \'scriptname\'.php

There is no output while the php script i

5条回答
  •  青春惊慌失措
    2021-01-19 17:46

    Killed is what bash says when a process exits after a SIGKILL, it's not related to putty.

    Terminated is what bash says when a process exits after a a SIGTERM.

    You are not running into PHP limits, you may be running into a different problem, see:

    Return code when OOM killer kills a process

提交回复
热议问题