PHP-FPM 无法停止,停止后自动重启

发布于 2022-09-07 23:18:06 字数 1369 浏览 17 评论 0

问题描述

今天修改了一个 php-fpm.conf 的配置:daemonize = yes

然后使用 kill -USR2 'cat /usr/local/var/run/php-fpm.pid' 重启 php-fpm.

执行 ps -ef | grep php-fpm 的结果如下图:

  501 25131     1   0  9:31下午 ??         0:00.37 /usr/local/opt/php/sbin/php-fpm --nodaemonize
  501 25136 25131   0  9:31下午 ??         0:00.00 /usr/local/opt/php/sbin/php-fpm --nodaemonize
  501 25137 25131   0  9:31下午 ??         0:00.00 /usr/local/opt/php/sbin/php-fpm --nodaemonize

然后通过 kill -9 25131,这个 pid 的进程停止了又会自动启动一个新的 fpm 进程。
我的问题是,为什么 fpm 会自动重启,还有 --nodaemonize 是什么,我的进程里没有发现 master process .

下面是我关闭进程后的日志:

[27-Sep-2018 09:44:17] NOTICE: Finishing ...
[27-Sep-2018 09:44:17] NOTICE: exiting, bye-bye!
[27-Sep-2018 09:44:17] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[27-Sep-2018 09:44:17] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[27-Sep-2018 09:44:17] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[27-Sep-2018 09:44:17] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[27-Sep-2018 09:44:17] NOTICE: fpm is running, pid 941
[27-Sep-2018 09:44:17] NOTICE: ready to handle connections

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪落纷纷 2022-09-14 23:18:06

在 Mac 的 ~/Library/LaunchAgents 下发现了 homebrew.mxcl.php.plist 的文件,这是 Mac 的系统自启文件,删除此文件重启后,就可以了。

瞎闹 2022-09-14 23:18:06

手动执行

launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.php.plist

命令就可以了,如果确认再恢复过来,执行

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php.plist 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文