Home  >  Article  >  Operation and Maintenance  >  How to turn off php-fpm on mac

How to turn off php-fpm on mac

王林
王林Original
2020-08-26 13:40:095463browse

How to close php-fpm on Mac: directly execute the [sudo pkill -INT -o php-fpm] command in the terminal. If we want to restart php, we can execute the [sudo php-fpm] command.

How to turn off php-fpm on mac

Specific method:

(Recommended video tutorial: php video tutorial)

Force close php-fpm

sudo pkill -INT -o php-fpm

Restart php

sudo php-fpm

(Related tutorial recommendations: php graphic tutorial)

PHP installed by mac brew can be opened using this

brew services start homebrew/php/php56

php installed by mac brew can be restarted using this

brew services reload homebrew/php/php56

The above is the detailed content of How to turn off php-fpm on mac. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn