workerman下框架gateway报错 worker[thinkphp:30776] exit with status 64000

发布时间 2023-05-08 13:04:39作者: 温柔的风

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

然后重启