找到这个nohup的进程后,kill杀死了,可是workerman这个进程还在后台运行着,要怎么解决?
建议使用 Supervisor 进程管理,https://github.com/Supervisor/supervisor/
workerman是多进程的,你只把nohup进程杀死了,还有其它进程存在是正常现象。 不要去kill,你要kill的话就得把每一个进程kill掉。
正确的用法是 php start.php start -d,停止的时候 php start.php stop。
php start.php start -d
php start.php stop
建议使用 Supervisor 进程管理,https://github.com/Supervisor/supervisor/
workerman是多进程的,你只把nohup进程杀死了,还有其它进程存在是正常现象。
不要去kill,你要kill的话就得把每一个进程kill掉。
正确的用法是
php start.php start -d
,停止的时候php start.php stop
。