How to restart php-fpm inside a docker container?

后端 未结 4 1700
天涯浪人
天涯浪人 2021-01-30 17:13

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?

4条回答
  •  野性不改
    2021-01-30 17:38

    You don't have to go inside the container

    on your host ps -ef|grep fpm // find master pid kill -USR2

提交回复
热议问题