...
WebTatic 저장소 설치(RHEL/CentOS 5,6,7 에 EPEL 과 Remi/WebTatic Repository 설치하기 참고)
Code Block title CentOS 6 # rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
Code Block title CentOS 7 # rpm -Uvh http://mirror.premi.st/epel/7/x86_64/e/epel-release-7-5.noarch.rpm # rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum 으로 패키지 설치
Code Block yum install php56w-cli php56w-fpm php56w-mbstring php56w-mcrypt php56w-mysql php56w-opcache php56w-pdo php56w-pear php56w-xml
부팅시 php-fpm service 활성화
Code Block title CentOS 7 # systemctl enable php-fpm.service
Code Block title CentOS 6 # chkconfig --add php-fpm on
php-fpm 구동
Code Block title CentOS 7 # systemctl start php-fpm.service
Code Block title Centos 6 # service start php-fpm
...