CentOS配置Nginx官方的Yum源 及yum安装php

前端之家收集整理的这篇文章主要介绍了CentOS配置Nginx官方的Yum源 及yum安装php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 由于yum源中没有我们想要的Nginx,那么我们就需要创建一个“/etc/yum.repos.d/Nginx.repo”的文件,其实就是新增一个yum源。

[root@niaoyun~]# vim /etc/yum.repos.d/Nginx.repo

然后将下面的内容复制进去:

[Nginx]
name=Nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

然后保存“/etc/yum.repos.d/Nginx.repo”文件后,我们就使用yum命令查询一下我们的Nginx的yum源配置好了没有。

[root@niaoyun~]# yum list |grep Nginx
Nginx.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-debug.x86_64 1:1.8.0-1.el7.ngx Nginx
Nginx-debuginfo.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-module-geoip.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-module-image-filter.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-module-njs.x86_64 1:1.10.1.0.0.20160414.1c50334fbea6-1.el7.ngx
Nginx
Nginx-module-perl.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-module-xslt.x86_64 1:1.10.1-1.el7.ngx Nginx
Nginx-nr-agent.noarch 2.0.0-9.el7.ngx Nginx
pcp-pmda-Nginx.x86_64 3.10.6-2.el7 base

如果执行命令是这样的显示效果,那么我们的Nginx的yum源就配置成功啦!

然后要安装我们的Nginx就直接执行:

[root@niaoyun~]# yum -y install Nginx

如果操作正确到这里Nginx环境就已经安装OK了。

当然你还可以使用命令查一下究竟是否安装完成。

[root@niaoyun~]# rpm -q Nginx
Nginx-1.12.1-1.el7.ngx.x86_64

  1. CentOS7 环境安装remi源

  2. -Uvhhttp://rpms.remirepo.net/enterprise/remi-release-7.rpm

然后编辑 /etc/yum.repos.d/remi.repo
vim /etc/yum.repos.d/remi.repo

将其中 [remi] 下的enabled=0改为1,保存退出,配置完成。

更多的PHP扩展可以:https://rpms.remirepo.net/wizard/


本文来自:

https://yq.aliyun.com/articles/198098?t=t1

原文链接:https://www.f2er.com/centos/374446.html

猜你在找的CentOS相关文章