1、配置epel源
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
--2017-12-01 17:08:56-- http://mirrors.aliyun.com/repo/epel-7.repo
Resolving mirrors.aliyun.com (mirrors.aliyun.com)... 180.163.159.88, 180.163.159.87, 180.163.159.84, ...
Connecting to mirrors.aliyun.com (mirrors.aliyun.com)|180.163.159.88|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1084 (1.1K) [application/octet-stream]
Saving to: ‘/etc/yum.repos.d/epel-7.repo’
100%[=====================================================================================================================>] 1,084 --.-K/s in 0s
2017-12-01 17:09:07 (111 MB/s) - ‘/etc/yum.repos.d/epel-7.repo’ saved [1084/1084]
[root@localhost yum.repos.d]# ll epel-7.repo
-rw-r--r--. 1 root root 1084 Nov 21 2014 epel-7.repo
2、查看nginx版本
[root@localhost ~]# yum info nginx
![](https://box.kancloud.cn/e6e34752d91f390d527255402ae3be99_733x350.png)
3、安装nginx
[root@localhost ~]# yum -y install nginx
4、nginx目录结构
配置文件: /etc/nginx
启动脚本:/usr/lib/systemd/system/nginx.service
脚本配置文件:/etc/sysconfig/nginx
nginx命令:/usr/sbin/nginx
模块文件:/usr/lib64/nginx/modules
说明文档目录:/usr/share/doc/
日志切割:etc/logrotate.d/nginx
日志文件:/var/log/nginx
默认主目录:/usr/share/nginx/html/
5、启动nginx服务
[root@localhost ~]# systemctl start nginx
[root@localhost ~]# systemctl status nginx
● nginx.service - The nginx HTTP and reverse proxy server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
Active: active (running) since Fri 2017-12-01 17:22:30 CST; 4s ago
Process: 2425 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
Process: 2423 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
Process: 2421 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
Main PID: 2428 (nginx)
CGroup: /system.slice/nginx.service
├─2428 nginx: master process /usr/sbin/nginx
└─2429 nginx: worker process
通过配置nginx repo仓库也可以
1、配置nginx repo仓库
[root@static ~]# vim /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
注意:
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
Replace “OS” with “rhel” or “centos”, depending on the distribution used, and “OSRELEASE” with “6” or “7”, for 6.x or 7.x versions, respectively.
2、然后安装nginx
[root@localhost ~]# yum -y install nginx
- 第一部分:Nginx Web服务
- 第一章: Nginx的初探
- 第二章:Nginx的安装部署
- 第一节:在centos6上通过Yum安装Nginx
- 第二节:在Centos7上通过Yum安装nginx
- 第三节:编译安装Nginx服务
- 第四节: Nginx编译参数详解
- 第五节: Nginx的启动脚本
- 第六节:Nginx的shell脚本安装
- 第七节:nginx服务的平滑升级
- 第三章:Nginx服务基础配置
- 第一节: 配置运行nginx服务器用户
- 第二节:配置运行生成的worker processes进程数
- 第三节:配置Nginx进程PID存放路径
- 第四节:定义MIME类型
- 第五节:自定义nginx的访问日志
- 第六节:主配置段(main)常用的配置
- 第七节:http段(核心)常用的配置命令
- 第八节:配置nginx中的location段
- 第九节: 基于IP的访问控制
- 第十节:基于用户的访问控制
- 第十一节:Nginx定义status状态页
- 第十二节:Nginx服务器Rewrite重写
- 第十三节:Nginx服务配置防盗链
- 第十四节:nginx软件的优点
- 第四章:Nginx服务器的优化配置
- 第一节:nginx.conf配置文件基本参数优化
- 第二节:fastcgi调优
- 第三节:Gzip调优
- 第四节:expires缓存调优
- 第五节:内核参数优化
- 第六节: Nginx之——413 修改上传文件大小限制
- 第五章:Nginx虚拟主机的配置
- 第一节:基于名称的虚拟主机
- 第二节:通过shell脚本添加虚拟主机
- 第六章:Nginx常用模块指令详解
- 第一节:ngx_http_realip_module
- 第二节:http_image_filter_module
- 第三节:tengine中配置consistent hash module
- 第四节:ngx_http_userid_module
- 第七章:Nginx服务器配置HTTPS访问
- 第八章: Nginx服务器日志切割
- 第二部分:Nginx负载均衡反向代理服务
- 第一章:Nginx进阶参数详解
- 第一节:proxy_module参数详解
- 第二节:upstream_module参数详解
- 第四章:Nginx反向代理服务
- 第一节:Nginx反向代理配置参数详解
- 第二节:Nginx反向代理服务配置案例
- 第三节:Nginx缓存
- 第四节: Nginx中fastcgi模块
- 第五节:nginx+fastcgi实现动静分离架构
- 第五章:Nginx负载均衡
- 第一节:ngx_http_upstream_module常见指令
- 第二节:调度方法
- 第三节:健康状态检查