반응형
atomic 레파지토리로 설치시에 php버전이 맞지 않으면 오류가 발생
고로 직접 다운로드 해서 설치
http://www.zend.com/products/guard/downloads?utm_medium=affiliate#Linux
버전에 맞는 파일을 선택 다운로드
서버로 올린뒤
압축을 해제
tar -xcvf [FILE_NAME]
그리고
ZendGuardLoader.so 파일을 복사
서버에 맞게 cp
32-bit server: /usr/lib/php/modules
64-bit server: /usr/lib64/php/modules
로딩 설정
vi /etc/php.d/ZendGuard.ini
32비트
; Enable Zend Guard extension
zend_extension=/usr/lib/php/modules/ZendGuardLoader.so
zend_loader.enable=1
64비트
; Enable Zend Guard extension
zend_extension=/usr/lib64/php/modules/ZendGuardLoader.so
zend_loader.enable=1
httpd 재시작
php -v로 체크
with Zend Guard Loader나오면 성공
반응형
'dev > linux' 카테고리의 다른 글
[CentOS 7] firewalld 사용하기 (0) | 2016.07.01 |
---|---|
[nginx] add or remove www domain (0) | 2016.02.17 |
[centos] Install MariaDB (0) | 2016.02.07 |
[centos] cofiguration nginx with php-fpm (0) | 2016.02.07 |
[centos] php fpm configuration (0) | 2016.02.07 |