阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

nginx-1.9.7 编译安装、理论简介

250次阅读
没有评论

共计 3204 个字符,预计需要花费 9 分钟才能阅读完成。

Nginx 是一个 web 网站常用的高性能 http 和反向代理服务器,其具有较好的并发能力,被网易、百度、腾讯、新浪等网站广泛使用。

 一、理论简介

 1. 首先弄清楚正向代理和反向代理

正向代理:代理客户端,替客户端收发请求,使真实的客户端对服务器不可见。如图所示,proxy 和 client 同属于一个网络,对 server 透明

nginx-1.9.7 编译安装、理论简介

反向代理:代理服务器,提服务器收发请求,使真实的服务器对客户端不可见。如图所示,proxy 和 server 同属于一个网络,对 client 透明

nginx-1.9.7 编译安装、理论简介

实际上 proxy 都是代为收发请求和响应,只是在结构上左右换了下,所以一个叫正向代理,另一个叫反向代理。

 2.nginx 的反向代理原理

如下图所示:nginx 作为反向代理服务器接收来自客户端的 http 请求,然后将请求转发给内部网络的 web 服务器,同时接收来自 web 服务器的 response 结果,并返回给客户端。此时 nginx 代理服务器对外展现为一个服务器。

nginx-1.9.7 编译安装、理论简介

3.nginx 的反向代理的作用

(1)负载均衡。nginx 可以将来自客户端的请求均衡的分发到 web 服务器集群中的不同机器上进行处理,平衡集群中各个服务器的压力。这对于大访问量的 web 网站来说,是需要的。
(2)安全保障。客户端直接访问的不是提供内容的 web 服务器,为保护网站服务器提供了一层屏障,有利于保护网站的安全。
(3)加速 web 请求。nginx 可以配置缓存,存储真实 web 服务器的某些资源和响应,减轻真实服务器的压力,同时加速 web 请求

二、nginx-1.9.7 编译安装

下载地址: http://nginx.org/download/nginx-1.9.7.tar.gz

补充: 安装 nginx 之前,需要先安装一些依赖包:gcc、pcre、zlib
a、nginx gzip 模块需要 zlib 库
b、nginx rewrite 模块需要 pcre 库
c、nginx ssl 模块需要 openssl 库

1、安装必要依赖包
[root@linuxidc.com ~]# yum install -y pcre pcre-devel

CentOS6.7 配置 yum 本地源 链接参考:http://www.linuxidc.com/Linux/2017-06/144821.htm

2、Nginx 安装
[root@linuxidc.com ~]# ll nginx-1.9.7.tar.gz
-rw-r–r–. 1 root root 885562 Jun 14 21:46 nginx-1.9.7.tar.gz
[root@linuxidc.com ~]# tar zxvf nginx-1.9.7.tar.gz
[root@linuxidc.com ~]# cd nginx-1.9.7
— 配置 nginx 安装选项
[root@linuxidc.com nginx-1.9.7]# ./configure –prefix=/usr/local/nginx
说明:配置完毕后可以看到一个配置概要,概要中的 5 项必须都有了相应的库支持
Configuration summary
+ using system PCRE library
+ OpenSSL library is not used
## 如果想要安装 openssl 模块,安装时需指定 ./configure –prefix=/usr/local/nginx –with-openssl=/root/openssl-1.0.2d ##
+ md5: using system crypto library
+ sha1: using system crypto library
+ using system zlib library
— 安装 nginx
[root@linuxidc.com nginx-1.9.7]# make && make install
3、检查安装是否正常
[root@linuxidc.com nginx-1.9.7]# cd /usr/local/nginx
[root@linuxidc.com nginx]# ll
total 16
drwxr-xr-x. 2 root root 4096 Jun 14 22:14 conf
drwxr-xr-x. 2 root root 4096 Jun 14 22:14 html
drwxr-xr-x. 2 root root 4096 Jun 14 22:14 logs
drwxr-xr-x. 2 root root 4096 Jun 14 22:14 sbin
— 启动
[root@linuxidc.com nginx]# ./sbin/nginx #如果不能正常启动,可能是端口占用
[root@linuxidc.com nginx]# ps -ef|grep nginx
root 5212 1 0 22:17 ? 00:00:00 nginx: master process ./sbin/nginx
nobody 5213 5212 0 22:17 ? 00:00:00 nginx: worker process
root 5228 2359 0 22:20 pts/0 00:00:00 grep nginx
— 访问
浏览器输入:http://10.219.24.26/ #ip 换成自己的 ip
看到以下页面内容,一切正常。
Welcome to nginx!

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

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

— 关闭
[root@linuxidc.com nginx]# ./sbin/nginx -s stop
[root@linuxidc.com nginx]# ps -ef|grep nginx
root 5241 2359 0 22:25 pts/0 00:00:00 grep nginx

CentOS 7 下 Nginx 服务器的安装配置  http://www.linuxidc.com/Linux/2017-04/142986.htm

CentOS 上安装 Nginx 服务器实现虚拟主机和域名重定向  http://www.linuxidc.com/Linux/2017-04/142642.htm

CentOS 6.8 安装 LNMP 环境(Linux+Nginx+MySQL+PHP)http://www.linuxidc.com/Linux/2017-04/142880.htm

Linux 下安装 PHP 环境并配置 Nginx 支持 php-fpm 模块  http://www.linuxidc.com/Linux/2017-05/144333.htm

Nginx 服务的 SSL 认证和 htpasswd 认证  http://www.linuxidc.com/Linux/2017-04/142478.htm

Linux 中安装配置 Nginx 及参数详解  http://www.linuxidc.com/Linux/2017-05/143853.htm

Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm

CentOS 7.2 下 Nginx+PHP+MySQL+Memcache 缓存服务器安装配置  http://www.linuxidc.com/Linux/2017-03/142168.htm

CentOS6.9 编译安装 Nginx1.4.7  http://www.linuxidc.com/Linux/2017-06/144473.htm

Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里

本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-06/144822.htm

正文完
星哥玩云-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计3204字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中