博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7.0使用Yum安装Nginx
阅读量:6680 次
发布时间:2019-06-25

本文共 1615 字,大约阅读时间需要 5 分钟。

安装Nginx

yum install nginx

正常情况下必定是:

已加载插件:fastestmirror, langpacksbase                                                            | 3.6 kB  00:00:00     docker-main                                                     | 2.9 kB  00:00:00     extras                                                          | 3.4 kB  00:00:00     updates                                                         | 3.4 kB  00:00:00     (1/2): extras/7/x86_64/primary_db                               | 122 kB  00:00:00     (2/2): updates/7/x86_64/primary_db                              | 2.9 MB  00:00:28     Loading mirror speeds from cached hostfile * base: mirrors.163.com * extras: mirrors.163.com * updates: mirrors.163.com没有可用软件包 nginx。错误:无须任何处理

遂百度查找,

#rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

a、先创建一个yum的一个repository文件:/etc/yum.repos.d/nginx.repo;

b、然后将下面配置粘贴进文件后保存。

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

接下来基本上就顺了:

(1)安装Nginx#yum install nginx(2)启动Nginx#service nginx start或#systemctl start nginx.service

访问一下:

curl http://127.0.0.1
Welcome to nginx!

Welcome to nginx!

If you see this page, the nginx web server is successfully installed andworking. Further configuration is required.

For online documentation and support please refer tonginx.org.

Commercial support is available atnginx.com.

Thank you for using nginx.

本机访问虚拟机ip:

 

ps:如果访问失败

1、可能是防火墙的问题:

关闭防火墙   service iptables stop

2、也可能是80端口没有打开:

 /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT  

转载于:https://www.cnblogs.com/lamp01/p/7390179.html

你可能感兴趣的文章
阿里创新自动化测试工具平台--Doom
查看>>
Centos 5.5-yum安装配置LNMP
查看>>
跟 陌生人吃饭-这样的网站你认为如何?
查看>>
IT项目管理之接受风险
查看>>
Android Service启动Dialog
查看>>
Win2000 Server***监测
查看>>
如何查询SQL Server备份还原历史记录
查看>>
微信公众号H5支付遇到的那些坑
查看>>
好程序员web前端分享js实现实战案例
查看>>
Virtualbox安装Ubuntu,please remove the installation
查看>>
活动的启动模式汇总
查看>>
pptpd基于mysql用户验证的完整操作步骤
查看>>
git shallow clone之后切换远程分支的方案
查看>>
web服务之Apache实现的https访问
查看>>
【Qt学习笔记】8.Qt中的多线程
查看>>
mac:macOS开机恢复系统或选择不同系统
查看>>
ubuntu中apache添加虚拟主机时出现的错误
查看>>
Docker系列文章--安装Docker CE
查看>>
robocopy 使用感受
查看>>
NO.14 禅道项目管理软件ZenTaoPHP框架安装
查看>>