当前位置:首页 > 技术之家 > linux > 正文内容

PHP74 Remi软件源安装向导

PHP74 Remi软件源安装向导

仓库设置和php安装向导

1

设置方法

  • RHEL 7 provides PHP version 5.4 in its official repository

  • Command to install the EPEL repository configuration package:

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

  • Command to install the Remi repository configuration package:

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

  • Command to install the yum-utils package (for the yum-config-manager command):

    • yum install yum-utils

  • On RHEL you (probably) need to enable the optional channel for some dependencies.

  • Command to enable:

    • subscription-manager repos --enable=rhel-7-server-optional-rpms

  • You want a single version which means replacing base packages from the distribution

  • Packages have the same name than the base repository, ie php-*

  • Some common dependencies are available in remi-safe repository, which is enabled by default

  • PHP version 7.4 packages are available for RHEL 7 in remi-php74 repository

  • Command to enable the repository

yum-config-manager --disable 'remi-php*'yum-config-manager --enable   remi-php74
  • You can check the list of the enabled repositories:

    • yum repolist

  • If the priorities plugin is enabled, ensure remi-php74 have higher priority (a lower value) than base and updates

  • Command to upgrade (the repository only provides PHP):

    • yum update

  • Command to install additional packages:

    • yum install php-xxx

  • Command to install testing packages:

    • yum --enablerepo=remi-php74-test install php-xxx

  • Command to check the installed version and available extensions:

php --versionphp --modules


扫描二维码推送至手机访问。

版权声明:本文章来源于网络,版权归原作者所有,如果本站文章侵犯了您的权益,请联系我们删除,联系邮箱:luxd@aliyun.com,感谢支持理解。


本文链接:https://luxd.cc/post/217.html

“PHP74 Remi软件源安装向导” 的相关文章

Linux下如何查看哪些进程占用的CPU内存资源最多

Linux下如何查看哪些进程占用的CPU内存资源最多

linux下获取占用CPU资源最多的10个进程,可以使用如下命令组合:ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|headlinux下获取占用内存资源最多的10个进程,可以使用如下命令组合:ps aux|head -1;ps aux|grep -...

U盘安装物理电脑linux系统

U盘安装物理电脑linux系统

企业中的应用一般都跑在:   物理服务器  虚拟机(云主机)  容器现 在 刚 学 习 linux 的 新 手 一 般 都 是 在 windows 系 统 中 安 装 vmware workstation,然后再安装vmware虚拟机使用与学习。但遇到物理电脑...

linux-查看文件夹大小

linux-查看文件夹大小

查看文件夹大小ls 命令列出当前工作目录下的所有文件/文件夹的名称使用ls -l,会显示成字节大小,ls- lh会以KB、MB等为单位进行显示更加直观du 命令查看当前目录和子目录文件夹/文件大小情况du = disk usage 磁盘使用率,输出每个文件或者目录总大小, 其用法如下:du...

Linux 如何删除乱码文件-inode删除

Linux 如何删除乱码文件-inode删除

步骤一使用 ls -li 命令查看文件的 inodels -li红框标识的为文件的 inode步骤二按inode删除文件删除文件find -inum 28577716 -delete上面的数字为查询到的inode删目录f...

vi/vim文件查找与替换

vi/vim文件查找与替换

vi/vim文件查找与替换概述vim有着强大的替换和查找功能,若能进行熟练的运用,可以让工作效率得到一个很大程度的提高.语法[addr]s/源字符串/目的字符串/[option][addr]`表示检索范围,如:"1,n":表示从第1行到n行"%":表示整个文件...

Linux软件源设置

Linux软件源设置

Linux软件源设置debian清华https://mirrors.tuna.tsinghua.edu.cn/help/debian/# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释deb https://mirrors.tuna.tsinghua.edu.cn/de...