本文介绍了如何在Docker容器中重新启动php-fpm?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用docker,我的容器是通过。
是否可以通过某种方式从容器内部重新启动/重新加载php-fpm?

I'm using docker and my container is build over php:5.6-fpm image from php official repo.Is it somehow possible to restart/reload php-fpm from inside a container?

推荐答案

php-fpm 是一个支持USER2信号的进程管理器,用于重新加载配置文件。

php-fpm is a process manager which supports the USER2 signal, which is used to reload the config file.

从容器内部:

kill -USR2 1

外部:

docker exec -it <mycontainer> kill -USR2 1

完整示例:

docker run -d --name test123 php:7.1-fpm-alpine
docker exec -it test123 ps aux
docker exec -it test123 kill -USR2 1
docker exec -it test123 ps aux

这篇关于如何在Docker容器中重新启动php-fpm?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 00:32