Centos7从php7.2升级到7.4

如果尚未安装 EPEL 源,请执行:

yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

安装 Remi 源:

yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm

安装 yum-utils (yum-config-manager):

yum install yum-utils

记录和备份当前的 PHP 安装情况

yum list installed | grep php > /tmp/current-php.txt
cp /etc/php.ini /tmp/php.ini.bak
cp /etc/php-fpm.d/www.conf /temp/www.conf

#...

配置源:

yum-config-manager --disable 'remi-php*'
yum-config-manager --enable   remi-php74
介绍
yum-config-manager命令是对资源库(/etc/yum.repos.d/下的文件)进行增删改查
系统默认没有安装这个命令,这个命令在yum-utils包里,可以通过yum install -y yum-utils安装

查询仓库内容
查询所有资源库
# yum repolist all
查询已启用的资源库
# yum repolist enabled
查询禁用的资源库
# yum repolist disabled

添加资源库
# yum-config-manager --add-repo repository_url
# yum-config-manager --add-repo https://mirrors.tuna.tsinghua.edu.cn/centos/8/BaseOS/x86_64/os/
启用资源库
# yum-config-manager --enable itemName

禁用资源库
# yum-config-manager --disable itemName
或者直接编辑/etc/yum.repos.d/下对应资源库文件
enabled=0

删除资源库
在/etc/yum.repos.d/下手动删除对应repo文件即可,这会使得该库中所有信息被删除

Update:

yum update -y

开机启动

systemctl enable php-fpm

你可能感兴趣的:(php,centos)