Nginx教程

nginx通过yum安装指定版本

本文主要是介绍nginx通过yum安装指定版本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
  1. 创建repo文件 vi /etc/yum.repo.d/nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

会先去找http://nginx.org/packages/centos/7/x86_64/repodata/repomd.xml文件

  1. 查看repos源yum repolist是否添加了nginx-stable
    image

  2. 罗列nginx版本yum list | grep nginx
    或者指定源yum list --enablerepo=nginx-stable | grep nginx
    image

  3. 安装指定版本
    yum install nginx-1.22.0

  4. 卸载使用yum remove方式

这篇关于nginx通过yum安装指定版本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!