详解Centos下YUM安装PHP的两种方式
程序员文章站
2022-06-29 21:21:26
在centos下安装php时, 先后使用了两种方式进行实现, 现整理出来以作记录。
摘要
一般centos下安装软件我们采用源码安装或者rpm包安装的方式,有时候更简单...
在centos下安装php时, 先后使用了两种方式进行实现, 现整理出来以作记录。
摘要
一般centos下安装软件我们采用源码
安装或者rpm包
安装的方式,有时候更简单我们可以采用yum源
的方式
安装php的时候有个特殊的地方,其有两个yum源可供选择
webtatic方式安装升级php
安装webtatic
源
[root@i-bskmtj6q ~]# rpm -uvh https://mirror.webtatic.com/yum/el6/latest.rpm retrieving https://mirror.webtatic.com/yum/el6/latest.rpm preparing... ########################################### [100%] 1:webtatic-release ########################################### [100%] [root@i-bskmtj6q ~]# ls -l /etc/yum.repos.d/webtatic* -rw-r--r-- 1 root root 963 nov 13 2016 /etc/yum.repos.d/webtatic-archive.repo -rw-r--r-- 1 root root 865 nov 13 2016 /etc/yum.repos.d/webtatic.repo -rw-r--r-- 1 root root 963 nov 13 2016 /etc/yum.repos.d/webtatic-testing.repo
安装或者升级php
## install yum --enablerepo=remi install php php-* ## update yum --enablerepo=remi update php php-*
remi方式安装升级php
remi源有个特殊
的地方,安装其前必须先安装
[root@i-bskmtj6q ~]# rpm -uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm retrieving http://rpms.famillecollet.com/enterprise/remi-release-6.rpm error: failed dependencies: epel-release = 6 is needed by remi-release-6.9-1.el6.remi.noarch
安装 remi源
[root@i-bskmtj6q ~]# rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm retrieving https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm preparing... ########################################### [100%] 1:epel-release ########################################### [100%] [root@i-bskmtj6q ~]# rpm -uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm retrieving http://rpms.famillecollet.com/enterprise/remi-release-6.rpm preparing... ########################################### [100%] 1:remi-release ########################################### [100%] [root@i-bskmtj6q ~]# ls -l /etc/yum.repos.d/remi* -rw-r--r-- 1 root root 457 jun 30 20:13 /etc/yum.repos.d/remi-php54.repo -rw-r--r-- 1 root root 1316 jun 30 20:13 /etc/yum.repos.d/remi-php70.repo -rw-r--r-- 1 root root 1316 jun 30 20:13 /etc/yum.repos.d/remi-php71.repo -rw-r--r-- 1 root root 1316 jun 30 20:13 /etc/yum.repos.d/remi-php72.repo -rw-r--r-- 1 root root 2609 jun 30 20:13 /etc/yum.repos.d/remi.repo -rw-r--r-- 1 root root 751 jun 30 20:13 /etc/yum.repos.d/remi-safe.repo
安装或者升级php
## install yum --enablerepo=webtatic install php php-* ## update yum --enablerepo=webtatic update php php-*
说明
1、epel
extra packages for enterprise linux,也就是为企业级 linux提供的扩展软件源,适用于 rhel,centos,scientific linux系统。
2、remi
软件源对旧的fedora版本提供最新的软件支持,也可以为centos及rhel提供最新的软件
看官网的图标可能主要和php安装升级相关(个人猜测)
3、webtatic
the webtatic yum repository is a centos/rhel repository containing updated web-related packages. 主要供应最新lamp等软件源
参考官网介绍
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: .Net Core MVC理解新管道处理模型、中间件
下一篇: 用 C# 来守护 Python 进程
推荐阅读
-
centos6.5中用yum方式安装php5.4与apache2.2的步骤
-
CentOS7 下nginx与PHP的安装与配置
-
centos下非yum方式安装docker环境
-
CentOS 6/7环境下通过yum安装php7的方法
-
CentOS7yum安装PHP7.2的操作方法
-
Centos7下PHP安装gd库的实例讲解
-
centos7下yum方式安装MySQL5.7
-
centos6.6 下 安装 php7 + nginx环境的方法
-
centos下yum搭建安装linux+apache+mysql+php环境教程
-
centos7利用yum安装lnmp的教程(linux+nginx+php7.1+mysql5.7)