centos7安装php7.x

使用webtatic源安装

配置源

yum install epel-release
rpm -ivh  https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

安装php7.1

yum -y install php71w php71w-cli php71w-common php71w-devel \
php71w-embedded php71w-gd php71w-mbstring php71w-pdo php71w-xml php71w-fpm \
php71w-mysqlnd php71w-opcache php71w-mcrypt php71w-pecl-memcached php71w-pecl-mongodb php71w-pecl-redis

使用remi源安装

配置源

yum install epel-release
yum install https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
# yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm  #remi官方源备用
# yum install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm #remi官方源备用

安装php7.1

yum --enablerepo=remi-php71 install php php-cli php-common php-devel php-embedded php-gd php-mbstring php-pdo php-xml php-fpm php-mysqlnd php-opcache php-mcrypt php-pecl-memcached php-pecl-mongodb php-pecl-redis
发布了97 篇原创文章 · 获赞 25 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/wuxingge/article/details/103432376
今日推荐