博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos直接yum安装nginx
阅读量:5844 次
发布时间:2019-06-18

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

Ubuntu下安装nginx,直接apt-get install nginx就行了,很方便。

但是今天装了CentOS6.2,直接yum install nginx不行,要先处理下源,下面是安装完整流程,也十分简单:

1、CentOS 6,先执行:

rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
2,查看yum的nginx信息

 

[]# yum info nginx

 

Loaded plugins: fastestmirror 

Determining fastest mirrors 

 * base: mirror.esocc.com 

 * extras: mirror.esocc.com 

 * updates: mirror.esocc.com 

base                                                     | 3.7 kB     00:00      

base/primary_db                                          | 4.4 MB     00:28      

extras                                                   | 3.5 kB     00:00      

extras/primary_db                                        |  19 kB     00:00      

nginx                                                    | 2.9 kB     00:00      

nginx/primary_db                                         |  22 kB     00:00      

updates                                                  | 3.5 kB     00:00      

updates/primary_db                                       | 2.1 MB     00:10      

Installed Packages 

Name        : nginx 

Arch        : x86_64 

Version     : 1.4.0 

Release     : 1.el6.ngx 

Size        : 874 k

 

Repo        : installed 

From repo   : nginx 

Summary     : nginx is a high performance web server 

URL         : http://nginx.org/ 

License     : 2-clause BSD-like license 

Description : nginx [engine x] is an HTTP and reverse proxy server, as well as 

            : a mail proxy server

3,安装并启动nignx
[root@server ~]# yum install nginx
[root@server ~]# service nginx start
Starting nginx:                                            [  OK  ]

4,然后进入浏览器,输入http://139.129.224.242/测试,如果看到

 恭喜你,你成功了!

如果不能连接到nginx,原因很多,但是可以先检查 1,nginx服务是否真的起来了;2,linux服务器防火墙是否打开

转自:

转载地址:http://ubqcx.baihongyu.com/

你可能感兴趣的文章
同一页面中引入多个JS库产生的冲突解决方案(转)
查看>>
C语言之指针与数组总结
查看>>
沟通:用故事产生共鸣
查看>>
1080*1920 下看网站很爽
查看>>
topcoder srm 305 div1
查看>>
[转]ORACLE 异常错误处理
查看>>
Object.observe将不加入到ES7
查看>>
Android类参考---Fragment(一)
查看>>
Windows WMIC命令使用详解(附实例)
查看>>
CMake 构建项目Android NDK项目基础知识
查看>>
请求与响应
查看>>
sql server(常用)
查看>>
算法 - 最好、最坏、平均复杂度
查看>>
MySQL 不落地迁移、导入 PostgreSQL - 推荐 rds_dbsync
查看>>
二叉树的蛇形遍历 leetcode 103
查看>>
Linux设备驱动之IIO子系统——IIO框架及IIO数据结构
查看>>
【Util】 时间天数增加,时间比较。
查看>>
[Erlang 0004] Centos 源代码编译 安装 Erlang
查看>>
51 Nod 1027 大数乘法【Java大数乱搞】
查看>>
20.4. myisamchk — MyISAM Table-Maintenance Utility
查看>>