linux服务器上yum安装指定版本php

Posted 幸福丶如此

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux服务器上yum安装指定版本php相关的知识,希望对你有一定的参考价值。

在很多情况下安装php是,如果通过yum安装,会导致安装的php版本比较低,如果在开发的时候用的是高版本的php,这个时候我们在服务器上安装php必须使用源码编译安装,如果在编译的时候报错了,可能需要很长的时间排错,然后重新编译安装,这样花费的时间比较长。

使用yum安装指定版本的php

1、下载对应的仓库
## centos7 版本
yum install -y  https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm

## centos8 版本
yum install -y https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-8.rpm

安装好后就会在 /etc/yum.repos.d 新增了很多关于php版本的repo文件,如果想安装对应版本的php,只需要启用对应的repo文件即可。
在这里插入图片描述

2、启用对应php版本仓库
##例如:安装php7.1版本
yum install -y yum-utils
yum-config-manager --enable remi-php71

或者直接修改 /etc/yum.repos.d/remi-php71.repo  文件,将 enabled的值改成1

##查看是否启用
yum repolist all | grep php
3、安装php
yum install -y php php-fpm

php -v   或者  yum info php

在这里插入图片描述
这时php7.1的版本就安装好了

以上是关于linux服务器上yum安装指定版本php的主要内容,如果未能解决你的问题,请参考以下文章

如何用yum安装指定版本的icu

linux下yum安装指定的mysql版本

CentOS yum 安装LAMP PHP5.4版本

linux centos 7 下用yum 安装iso镜像里自带的php5.4.16版本的但是没有php-fqm文件不知道怎么重启php服务

使用yum将软件更新到指定版本

linux 安装jdk及tomcat指定jdk版本