nugawiki Archive of experience and knowledge

./categories/os

CentOS 7 PHP 환경 구축 (Remi)

업데이트 2026-07-21 조회수

EPEL 및 Remi 레포지토리 설치

yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm

기본 저장소 설정 (버전별 선택)

yum-config-manager --enable remi-php55   # Install PHP 5.5
yum-config-manager --enable remi-php56   # Install PHP 5.6
yum-config-manager --enable remi-php72   # Install PHP 7.2

PHP 설치

yum install php php-mcrypt php-cli php-gd php-curl php-mysql php-ldap php-zip php-fileinfo

PHP 설치 확인

php -v

추가 설치

yum install php-mysql php-pear php-process php-devel php-xml php-mbstring php-pecl

./comments