이 기사는 주로 CentOS 설치 PHP5.6 예제를 공유하므로 도움이 되기를 바랍니다.
yum 소스 구성
CentOS 6.5 epel 및 remi 소스 추가
rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
CentOS 7.0 소스
yum install epel-releaserpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum list 명령을 사용하여 설치 가능한 패키지 보기(Packege)
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
PHP5.6 설치
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
사용 버전을 확인하는 PHP 명령
php --version
여기에 설치된 버전은 PHP5.6.34입니다. 주의깊은 사용자는 ZendGuardLoader가 Zend OPcahe가 되었음을 발견했을 것입니다.
PHP5.5부터 PHP 코드 캐시가 APC에서 Zend OPcache로 변경되었습니다.
nginx를 구성하는 경우 php-fpm도 설치해야 합니다
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
CentOS 6 시스템에서 PHP-FPM 서비스 시작
service php-fpm start
관련 권장 사항:
위 내용은 CentOS에 PHP5.6 인스턴스 설치의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!