프로그래밍/Linux
Centos7 php7.2 설치
New! Game
2020. 5. 12. 22:19
//추가 저장소 설치
wget http://rpms.remirepo.net/enterprise/remi-release-7.rpm
rpm -Uvh remi-release-7.rpm
//php패키지 활성화
yum install yum-utils -y
yum-config-manager --enable remi-php72
//php 설치
yum --enablerepo=remi,remi-php72 install php-fpm php-common -y
yum --enablerepo=remi,remi-php72 install php-opcache php-pecl-apcu php-cli php-pear php-pdo php-mysqlnd php-pgsql php-pecl-mongodb php-pecl-redis php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml -y
php -v
//php 버전 체크