Apache httpd : Use PHP Scripts2025/01/29 |
Configure httpd to use PHP scripts. |
|
[1] | |
[2] |
After installing PHP, Restart httpd, it's OK to do it only. [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 [/etc/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; preset: disabled) Active: active (running) since Wed 2025-01-29 09:46:24 JST; 5s ago Invocation: ae8b7583283d4ffdb28bfcb716e5811b Main PID: 4311 (php-fpm) Status: "Ready to handle connections" Tasks: 6 (limit: 23144) Memory: 14M (peak: 14.4M) CPU: 31ms 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 |
|