要在 Mac 上开启 PHP-FPM,请按照以下步骤操作:安装 Homebrew通过 Homebrew 安装 PHP-FPM(brew install php-fpm)启动 PHP-FPM(brew services start php-fpm)验证安装(brew services list 查看 php-fpm 是否正在运行)根据需要配置 Apache 或 Nginx重启 Web 服务器(Apachectl restart 或 Nginx -s reload)。

如何在 Mac 上开启 PHP-FPM
PHP-FPM (FastCGI Process Manager) 是 PHP 的高性能 FastCGI 实现。它可以让你同时运行多个 PHP 进程,从而提升性能和可伸缩性。
步骤:
1. 安装 Homebrew
立即学习“PHP免费学习笔记(深入)”;
Homebrew 是一个包管理器,可以方便地在 Mac 上安装软件和工具。如果没有 Homebrew,请按照 Apple 官方指南进行安装。
2. 安装 PHP-FPM
通过 Homebrew 安装 PHP-FPM:
<code class="bash">brew install php-fpm</code>
3. 启动 PHP-FPM
安装后,可以通过以下命令启动 PHP-FPM:
<code class="bash">brew services start php-fpm</code>
4. 验证安装
验证 PHP-FPM 是否正在运行:
<code class="bash">brew services list</code>
你应该会看到 "php-fpm" 服务正在运行。
5. 配置 Apache 或 Nginx
现在你需要配置你的 Web 服务器(如 Apache 或 Nginx)以使用 PHP-FPM。
Apache
编辑 Apache 配置文件 /etc/apache2/httpd.conf,并在 <VirtualHost> 块中添加以下内容:
<code class="apache"><IfModule mod_fastcgi.c>
FastCgiExternalServer /php-fpm.socket /usr/local/opt/php-fpm/var/run/php-fpm.socket
FastCgiServer /php-fpm.socket
</IfModule></code>Nginx
编辑 Nginx 配置文件 /etc/nginx/nginx.conf,并在 server 块中添加以下内容:
<code class="nginx">location ~ \.php$ {
fastcgi_pass unix:/usr/local/opt/php-fpm/var/run/php-fpm.socket;
fastcgi_index index.php;
}</code>6. 重启 Web 服务器
最后,重启你的 Web 服务器以使更改生效:
Apache
<code class="bash">apachectl restart</code>
Nginx
<code class="bash">nginx -s reload</code>
现在,你的 PHP-FPM 应该已在 Mac 上成功启动并配置。











