nginx 负载均衡

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 负载均衡相关的知识,希望对你有一定的参考价值。

nginx可以实例负载均衡。

  1. 准备工作
    操作系统:欧拉2.8 arm
    ecs-cecd-0002:192.168.0.141 #Nginx服务器
    ecs-cecd-0001:192.168.0.8 #Web服务器
    ecs-cecd-0003:192.168.0.92 #Web服务器

  2. 配置web访问
    在ecs-cecd-0001与ecs-cecd-0003上安装httpd:
    yum install -y httpd
    在ecs-cecd-0001:
    echo 001 >> /var/www/html/index.html
    在ecs-cecd-0003:
    echo 003 >> /var/www/html/index.html
    在ecs-cecd-0001与ecs-cecd-0003启动httpd:
    chmod 755 /var/www/html/index.html
    systemctl start httpd

  3. 配置nginx负载均衡
    在ecs-cecd-0002:
    yum install -y nginx
    在/etc/nginx/nginx.conf输入以下内容:wq保存退出:
    技术图片

systemctl start nginx

  1. 验证配置
    在ecs-cecd-0001:
    echo "192.168.0.141 tests" >> /etc/hosts
    在ecs-cecd-0002:
    echo "192.168.0.141 tests" >> /etc/hosts
    在ecs-cecd-0003:
    echo "192.168.0.141 tests" >> /etc/hosts
    技术图片

技术图片

技术图片

以上是关于nginx 负载均衡的主要内容,如果未能解决你的问题,请参考以下文章

Nginx---负载均衡和缓存

nginx负载均衡

使用Nginx配置TCP负载均衡

Nginx实现负载均衡

Nginx——nginx作为负载均衡服务(负载均衡与nginx)

nginx+keepalive实现负载均衡高可用