wokerman启动之后一直报错
Worker[30477] process terminated worker[thinkphp:30477] exit with status 64000 Worker[30533] process terminated worker[thinkphp:30533] exit with status 64000 Worker[30571] process terminated worker[thinkphp:30571] exit with status 64000 Worker[30623] process terminated worker[thinkphp:30623] exit with status 64000 Worker[30657] process terminated worker[thinkphp:30657] exit with status 64000 Worker[30690] process terminated worker[thinkphp:30690] exit with status 64000 Worker[30735] process terminated worker[thinkphp:30735] exit with status 64000
找到wokerman目录下的日志文件
解决办法:
杀掉进程,执行以下三条命令
ps -aux | grep -i start.php | awk '{print $2}'| xargs pkill -9 ps -aux | grep -i gateway | awk '{print $2}'| xargs pkill -9 ps -aux | grep -i wrokerman | awk '{print $2}'| xargs pkill -9
然后重启
标签:status,64000,process,worker,exit,thinkphp,报错 From: https://www.cnblogs.com/wt645631686/p/17381415.html