개발을 간바루Joy 하게

Centos7 php7.2 설치 본문

프로그래밍/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 버전 체크

 

'프로그래밍 > Linux' 카테고리의 다른 글

[Centos7] 줫같은 SElinux 해제  (0) 2020.05.20
Centos7 php-fpm(Nginx) 설정  (0) 2020.05.13
Centos7 Nginx 설정  (0) 2020.05.11
Centos7 Nginx 설치  (0) 2020.05.11
Centos7 usb 설치  (0) 2020.05.11