博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx负载均衡实验
阅读量:7140 次
发布时间:2019-06-28

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

 

Nginx负载均衡概述

Web服务器,直接面向用户,往往要承载大量并发请求,单台服务器难以负荷,我使用多台WEB服务器组成集群,前端使用Nginx负载均衡,将请求分散的打到我们的后端服务器集群中, 实现负载的分发。那么会大大提升系统的吞吐率、请求性能、高容灾

 

Nginx要实现负载均衡需要用到proxy_pass代理模块配置

Nginx负载均衡与Nginx代理不同地方在于

Nginx代理仅代理一台服务器,而Nginx负载均衡则是将客户端请求代理转发至一组upstream虚拟服务池

Nginx可以配置代理多台服务器,当一台服务器宕机之后,仍能保持系统可用。

 upstream配置

在nginx.conf > http 区域中

upstream django {       server 10.0.0.10:8000;       server 10.0.0.11:9000;}

在nginx.conf > http 区域 >  server区域  > location配置中

添加proxy_pass

location / {            root   html;            index  index.html index.htm;            proxy_pass http://django;}

此时初步负载均衡已经完成,upstream默认按照轮训方式负载,每个请求按时间顺序逐一分配到后端节点。

upstream分配策略

weight 权重

upstream django {       server 10.0.0.10:8000 weight=5;       server 10.0.0.11:9000 weight=10;#这个节点访问比率是大于8000的}

ip_hash

每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器
upstream django {
    ip_hash; server 10.0.0.10:8000; server 10.0.0.11:9000;}

backup

在非backup机器繁忙或者宕机时,请求backup机器,因此机器默认压力最小

upstream django {       server 10.0.0.10:8000 weight=5;       server 10.0.0.11:9000;       server node.oldboy.com:8080 backup;}

负载均衡实验环境规划

角色            ip                    主机名lb01        192.168.119.10        lb01    web01        192.168.119.11        web01web02        192.168.119.12        web02

关闭防火墙

iptables -Fsed  -i 's/enforcing/disabled/' /etc/selinux/configsystemctl stop firewalldsystemctl disable firewalld

一、web01服务器配置nginx,创建index.html

server {        listen       80;        server_name  192.168.119.11;        location / {        root /node;            index  index.html index.htm;        }} mkdir /node echo 'i am web01' > /node/index.html #启动NGINX ./sbgin/nginx

二、web01服务器配置nginx,创建index.html

server {    listen       80;    server_name  192.168.119.12;    location / {        root /node;        index  index.html index.htm;} mkdir /node echo 'i am web02...' > /node/index.html #启动nginx ./sbing/nginx

三、配置lb01服务器的nginx负载均衡

1.检查lb01的 nginx.conf

http {    include       mime.types;    default_type  application/octet-stream;    sendfile        on;    keepalive_timeout  65;    upstream node {      server 192.168.119.11:80;      server 192.168.119.12:80;}    server {        listen       80;        server_name 192.168.119.10;        location / {          proxy_pass http://node;          include proxy_params;  #需要手动创建        }    }}

2.手动创建proxy_params文件,文件中存放代理的请求头相关参数

[root@lb01 conf]# cat /opt/nginx/conf/proxy_paramsproxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_connect_timeout 30;proxy_send_timeout 60;proxy_read_timeout 60;proxy_buffering on;proxy_buffer_size 32k;proxy_buffers 4 128k;
启动lb01负载均衡nginx服务./sbin/nginx

四、访问lb01节点nginx,反复刷新

五、nginx负载均衡调度算法

调度算法      概述轮询        按时间顺序逐一分配到不同的后端服务器(默认)weight       加权轮询,weight值越大,分配到的访问几率越高ip_hash      每个请求按访问IP的hash结果分配,这样来自同一IP的固定访问一个后端服务器url_hash      按照访问URL的hash结果来分配请求,是每个URL定向到同一个后端服务器least_conn    最少链接数,那个机器链接数少就分发

1.轮询(不做配置,默认轮询)

2.weight权重(优先级)

3.ip_hash配置,根据客户端ip哈希分配,不能和weight一起用

六、nginx动静分离负载均衡

 

环境准备 

 

系统                 服务                软件                ip地址centos7(lb01)                负载均衡            nginx proxy        192.168.119.10centos7(web01)                静态资源            nginx静态资源        192.168.119.11centos7(web02)                动态资源            django            192.168.119.12

 

一、在web01机器上,配置静态资源,图片等

cat nginx.confserver {        listen       80;        server_name  192.168.119.11;        #定义网页根目录         root /code;        #定义了静态资源        index index.html;#域名匹配,所有的png、jpg、gif请求资源,都去/root/code/images底下找         location ~* .*\.(png|jpg|gif)$ {                root /code/images;        }    #重启nginx ./sbin/nginx
#创建目录mkdir -p /code/images#准备首页文件[root@web01  /code]$cat index.htmlstatic files...#准备静态文件,图片[root@web01  /code/images]$wget http://pythonav.cn/av/girlone.jpg^C[root@web01  /code/images]$lsgirlone.jpg

二、在web02配置动态请求,准备一个flask程序和静态资源转发

cat  nginx.conf#静态资源地址upstream static {server 192.168.119.11:80;} #flask动态请求upstream flask {server 192.168.119.12:8080;}     server {        listen       80;        server_name  192.168.119.12;       #当请求到达192.168.119.12:80/时,转发给flask的8080应用        location / {            proxy_pass http://flask;            include proxy_params;        }       #当判断资源请求是 192.168.119.12/girl.jpg时候,转发请求给static地址池的服务器192.168.119.11/        location ~ .*\.(png|jpg|gif)$ {        proxy_pass http://static;include proxy_params;}

准备flask应用,flask.py

from flask import Flaskapp=Flask(__name__)@app.route('/')def hello():    return "i am flask....from nginx"if __name__=="__main__":    app.run(host='0.0.0.0',port=8080)

后台运行flask程序

python flask-web.py &

三、在负载均衡服务器lb01上测试访问192.168.119.10

 

转载于:https://www.cnblogs.com/PythonMrChu/p/10440108.html

你可能感兴趣的文章
Ajax_实现动态网站的技术、php语法、php接口、前端渲染和后端渲染
查看>>
第一周
查看>>
Algs4-1.3.28用递归的方法解答上一道练习
查看>>
基于Wisense平台创建的某公司财务审批系统分析
查看>>
继承与钻石继承
查看>>
flask的g对象
查看>>
request payload
查看>>
linq To Xml 用法简介
查看>>
堆排序(用了好多的位运算)
查看>>
Django与Ajax
查看>>
Linux块设备IO子系统(二) _页高速缓存
查看>>
linux创建虚拟环境
查看>>
Sublime Text 3 - 快捷键汇总
查看>>
2012/11/06——记一小笔
查看>>
Inter exchange Client Address Protocol (ICAP)- 互换客户端地址协议
查看>>
Go调试工具—— Delve
查看>>
Netty Bootstrap(图解)|秒懂
查看>>
linux下查找某个文件位置的方法
查看>>
Android截图截取弹框AlertDialog
查看>>
explicit关键字
查看>>