1. Nginx 简介
1.1 Nginx是什么
Nginx : nginx [engine x]是HTTP和反向代理服务器,邮件代理服务器和通用TCP / UDP代理服务器,最初由Igor Sysoev编写。
- 特别是在高并发下,应用广泛
- 功能丰富
- 插件繁多
- 配置灵活
- 低消耗
1.2 正向代理和反向代理
正向代理:是代理的用户本机的请求,比如:翻墙、网络加速器等,安装在用户的电脑上。
反向代理:是代理的服务端的请求,比如:Nginx ,安装在服务器上。
1.3 Nginx作用
- 静态服务器:图片服务器、视频服务器 可以抗万级并发
- 动态服务器,可以代理:php\Java\数据库
- 可以实现负载均衡
- 缓存服务器
1.4 Nginx优点
- 占用资源,2万并发,10个线程,只需要占用几百M
- 简单、灵活
- 支持类型的多:http、负载均衡、邮件、tcp
- 配置 实现IP限速、预过滤等
- 高并发支持
1.5 Nginx负载均衡算法
Nginx作为负载均衡服务器,就需要对所有的请求进行分发,那么这个分发策略,有哪些?
轮询
默认
权重
根据权重分配请求 权重大的分配的概率高
IP_hash
根据IP进行分配
最少连接分配
- fair
最小响应时间
2. Nginx应用
2.1 安装Nginx
默认监听 80 端口
Docker 实现 Nginx 的安装:
- 下载镜像
docker pull nginx:latest
- 创建文件夹并准备配置
- 创建文件夹:
mkdir -p /docker/nginx/
- 拷贝配置文件:
vim /docker/nginx/nginx.conf
拷贝如下内容:——来源:windows上下载的 nginx 解压后找到 nginx.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
| worker_processes 1;
events { worker_connections 1024; }
http { include mime.types; default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server { listen 80; server_name localhost;
location / { root html; index index.html index.htm; }
error_page 500 502 503 504 /50x.html; location = /50x.html { root html; }
}
}
|
创建默认页面
创建目录:mkdir -p /docker/nginx/html/
拷贝页面 index.html 50x.html 到该目录
创建 Nginx 容器
运行:docker run -d --name nginx81 -p 81:80 -v /docker/nginx/nginx.conf:/etc/nginx/nginx.conf -v /docker/nginx/html:/usr/share/nginx/html nginx
访问 Nginx 容器
输入:http://IP地址:81端口/
2.2 基于Nginx实现负载均衡
基于Nginx搭建Tomcat的集群,实现的话,需要提前准备多个Tomcat容器。
比如准备3个Tomcat容器,实现Nginx负载均衡
使用 3个 Tomcat的不同端口实例,模拟 3台实际的服务器实现负载均衡。
- 搭建3台Tomcat
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| mkdir -p /docker/tomcat/webapp8081 mkdir -p /docker/tomcat/webapp8082 mkdir -p /docker/tomcat/webapp8083
docker run -d --name tomcat8081 -p 8081:8080 -v /docker/tomcat/webapp8081:/usr/local/tomcat/webapps/ tomcat docker run -d --name tomcat8082 -p 8082:8080 -v /docker/tomcat/webapp8082:/usr/local/tomcat/webapps/ tomcat docker run -d --name tomcat8083 -p 8083:8080 -v /docker/tomcat/webapp8083:/usr/local/tomcat/webapps/ tomcat
依次上传3个本地war包到3台Tomcat容器中,对应的webapp8081、webapp8082、webapp8083
依次访问3台Tomcat,确保都可以正常访问
|
- 修改Nginx配置文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| vim /docker/nginx/nginx.conf
worker_processes 1; events { worker_connections 1024; } user root; upstream lxtomcat{ server 172.18.0.6:8080 weight=4; server 172.18.0.7:8080 weight=2; server 172.18.0.9:8080 weight=3; } p Tomcat8081 172.18.0.6 Tomcat8082 172.18.0.7 Tomcat8083 172.18.0.9 server_name lxtomcat; location / { proxy_connect_timeout 5; proxy_read_timeout 10; proxy_send_timeout 20; proxy_pass http://lxtomcat ; }
docker restart nginx
访问 http://IP地址:81端口/tomcat可访问页
|