查看当前已安装的php包
yum list installed | grep php |
如果有已经安装的php包,先删除他们
yum remove php-common |
安装 epel 并设置源
yum install epel-release rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm |
安装 PHP-FPM
yum install --enablerepo=remi --enablerepo=remi-php72 php-fpm |
安装 需要的拓展
yum install --enablerepo=remi --enablerepo=remi-php72 php-mysql php-gd php-xml php-mbstring php-mcrypt php-redis php-opcache |
启动服务并设置开启自启动
systemctl start php-fpm |
systemctl enable php-fpm |