在Linux系统中,启动PHP有多种方法
-
通过命令行启动PHP:
在终端中输入以下命令来启动PHP内置的Web服务器:
php -S localhost:8000
这将在本地主机的8000端口上启动一个简单的Web服务器,你可以通过浏览器访问
http://localhost:8000
来查看PHP信息页面。 -
使用Apache或Nginx与PHP集成:
如果你使用的是Apache Web服务器,请确保已经安装了mod_php模块。安装完成后,重启Apache服务:
sudo systemctl restart apache2
如果你使用的是Nginx Web服务器,请确保已经安装了PHP-FPM(FastCGI Process Manager)。安装完成后,重启Nginx服务:
sudo systemctl restart nginx
现在,你可以在Apache或Nginx中配置PHP处理程序,以便在Web服务器中运行PHP脚本。
-
使用Systemd服务启动PHP:
如果你使用的是Systemd作为系统初始化器,你可以创建一个自定义的Systemd服务文件来管理PHP进程。首先,创建一个新的Systemd服务文件,例如
/etc/systemd/system/php.service
,并添加以下内容:[Unit] Description=The PHP HTTP Server After=network.target [Service] User=your_user Group=www-data WorkingDirectory=/var/www/html ExecStart=/usr/sbin/php-fpm --nodaemonize --fpm-config /etc/php/7.x/fpm/pool.d/www.conf [Install] WantedBy=multi-user.target
其中,将
your_user
替换为运行PHP-FPM的用户,将7.x
替换为你的PHP版本。保存文件后,重新加载Systemd配置并启动PHP服务:sudo systemctl daemon-reload sudo systemctl start php
最后,设置PHP服务在系统启动时自动运行:
sudo systemctl enable php
现在,你已经成功在Linux系统中启动了PHP。你可以根据需要选择合适的方法来运行和管理PHP进程。