如何在workerman下面Application_A中,重启Application_B中的某个worker?
status 命令可以看到哪些进程是属于Application_B的,对这些进程发送SIGINT信号可以安全重启对应的进程
kill -SIGINT $pid
这个pid从哪里找呢?
status 命令能看到
谢啦,结贴~
PS: 在worker里,使用 posix_getpid() 就可以获取到当前 worker 的 pid 了
status 命令可以看到
status 命令可以看到哪些进程是属于Application_B的,对这些进程发送SIGINT信号可以安全重启对应的进程
kill -SIGINT $pid
这个pid从哪里找呢?
status 命令能看到
谢啦,结贴~
PS:
在worker里,使用 posix_getpid() 就可以获取到当前 worker 的 pid 了
status 命令可以看到