我已经执行了一个执行我的php函数的cron作业:
public function run($arguments)
{
restart:
DB::query('insert into test(`label`) values ("run")');
sleep(1);
goto restart;
}
所以它循环并且每秒向DB添加一条记录,我已经从cron作业列表中删除了任务,但是该过程仍然有效,如何在不重新启动服务器的情况下停止它,我也可以使用SSH
答案 0 :(得分:1)
`killall -9 php`;
PHP或shell中的会杀死所有php进程。或者kill -9 PID
其中PID是php-job的进程ID。