php-7.4.15 설치 방법 (CENTOS 8)
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
rpm -qa | grep epel
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
rpm -qa | grep remi
dnf module list php
dnf module enable php:remi-7.4
dnf install php php-cli php-common
php-7.4.15 설치 방법 (CENTOS 7)
CENT7 : dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -qa | grep epel
dnf install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
sudo yum-config-manager --disable remi-php54
sudo yum-config-manager --enable remi-php74
yum -y install php
yum -y install php-fpm
Hello World 예제
<!DOCTYPE html>
<html>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
'WEB - Nginx > 설치' 카테고리의 다른 글
yum install nginx (0) | 2021.06.05 |
---|---|
Nginx 설치 - 소스 컴파일 방식 (0) | 2021.04.22 |