Apache httpd : Use PHP Scripts2021/08/03 |
Configure httpd to use PHP scripts.
|
|
[1] | |
[2] |
After installing PHP, Restart httpd, it's OK to do it only.
On RHEL 8/Rocky Linux 8, [mod_php] has been Deprecated and PHP-FPM (FPM : FastCGI Process Manager) is configured by default.When [httpd] starts, [php-fpm] also starts for dependency by setting file [/usr/lib/systemd/system/httpd.service.d/php-fpm.conf]. |
[root@www ~]# systemctl restart httpd [root@www ~]# systemctl status php-fpm * php-fpm.service - The PHP FastCGI Process Manager Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; disabled; vendor pr> Active: active (running) since Tue 2021-08-03 09:18:57 JST; 12s ago Main PID: 27801 (php-fpm) Status: "Processes active: 0, idle: 5, Requests: 0, slow: 0, Traffic: 0req/s> Tasks: 6 (limit: 23666) Memory: 18.5M CGroup: /system.slice/php-fpm.service ..... ..... # create PHPInfo test page [root@www ~]# echo '<?php phpinfo(); ?>' > /var/www/html/info.php |
[3] | Verify to access to PHPInfo test page from any client computer. |
Sponsored Link |