使用yum命令在CentOS7.6的系统中安装php5.6的版本

文章内容都是经过本人亲测过的步骤,如有不明白的地方,欢迎进群探讨

QQ技术交流群:126095418

刚刚安装好CentOS7.6后要安装php的时候发现使用yum安装的php竟然是5.4的版本,但是我需要安装php5.6的的版本要怎么办呢,接下来我就带大家一起来安装一下

一、首先我们需要先卸载掉之前安装的php

yum remove php* -y

二、配置一个epel源

yum install -y epel-release

如果没有安装wget工具需要先安装wget命令

yum install -y wget
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

三、配置一个remi源

rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

四、开始安装php5.6

yum install --enablerepo=remi --enablerepo=remi-php56 php php-fpm php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof -y

五、配置开机启动服务

systemctl restart php-fpm
systemctl enable php-fpm

六、检查是否安装成功

ps -ef | grep php
netstat -anp | grep 9000

 

你可能感兴趣的:(Linux-CentOS)