CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境(3)

已安装:
  php-7.4.3-1.el8.remi.x86_64                                                 
  php-gd-7.4.3-1.el8.remi.x86_64                                               
  php-mysqlnd-7.4.3-1.el8.remi.x86_64                                         
  php-opcache-7.4.3-1.el8.remi.x86_64                                         
  nginx-filesystem-1:1.14.1-9.module_el8.0.0+184+e34fea82.noarch               
  php-fpm-7.4.3-1.el8.remi.x86_64                                             
  php-mbstring-7.4.3-1.el8.remi.x86_64                                         
  php-sodium-7.4.3-1.el8.remi.x86_64                                           
  oniguruma-6.8.2-1.el8.x86_64                                                 
  libsodium-1.0.18-2.el8.x86_64                                               
  php-pdo-7.4.3-1.el8.remi.x86_64                                             

完毕!

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

验证安装的版本可以运行。

[linuxidc@localhost ~/www.linuxidc.com]$php -v
PHP 7.4.3 (cli) (built: Feb 18 2020 11:53:05) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

完善!现在,我们已经安装了PHP 7.4。同样重要的是,我们需要在启动时启动并启用PHP-FPM。

[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl start php-fpm
[sudo] linuxidc 的密码:
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl enable php-fpm
Created symlink /etc/systemd/system/multi-user.target.wants/php-fpm.service → /usr/lib/systemd/system/php-fpm.service.

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

要检查其状态,请执行命令。

[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl status php-fpm

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

指示SELinux允许Apache通过PHP-FPM运行来执行PHP代码。

[linuxidc@localhost ~/www.linuxidc.com]$ setsebool -P httpd_execmem 1

最后,重新启动Apache Web服务器以使PHP与Apache Web服务器一起使用。

[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl restart httpd

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

步骤5:测试PHP信息

要在网络服务器上测试PHP,您必须在文档根目录中创建一个info.php文件。

[linuxidc@localhost ~/www.linuxidc.com]$sudo nano /var/www/html/linuxidc.php

在下面插入PHP代码并保存文件。

<?php
 phpinfo ();
?>

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

然后转到您的浏览器,并在下面输入URL。 请记住用服务器的实际IP地址替换服务器本文测试的地址。

https://www.linuxidc.com/linuxidc.php

CentOS 8.1下搭建LAMP(Linux+Apache+MySQL+PHP)环境

现在,您应该能够在Web浏览器上查看有关PHP的信息。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/2a45db40e1e9303a667c95665f589b20.html