This article mainly introduces the restart of php-fpm, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
php-fpm Shutdown:
kill -INT 'cat /usr/local/php/var/run/php-fpm.pid'
php-fpm Restart:
kill -USR2 'cat /usr/local/php/var/run/php-fpm.pid'
The above is the detailed content of php-fpm restart. For more information, please follow other related articles on the PHP Chinese website!