本文主要是介绍nginx二进制安装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
- 一:二进制安装nginx
- 1.下载CentOS源
- 2.安装CentOS源
- 3.下载epel源(失败显示未找到命令)
- 4.解决依赖
- 5.安装Epel源
- 6.安装nginx
一:二进制安装nginx
- 官网:https://mirrors.huaweicloud.com/home
1.下载CentOS源
2.安装CentOS源
[root@localhost ~]# curl -o /etc/yum.repos.d/CentOS-Base.repo https://repo.huaweicloud.com/repository/conf/CentOS-7-reg.repo
3.下载epel源(失败显示未找到命令)
4.解决依赖
[root@localhost ~]# yum -y install yum-utils
5.安装Epel源
- EpEl源网址:https://repo.huaweicloud.com/epel/7/x86_64/
[root@localhost ~]# yum-config-manager --add-repo=https://repo.huaweicloud.com/epel/7/x86_64/
6.安装nginx
[root@localhost ~]# yum install nginx --nogpgcheck
--nogpgcheck : 公钥认证
这篇关于nginx二进制安装的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!