当前位置: 首页 > article >正文

Nginx实现负载服务之间的负载均衡

目录

1 下载nginx

2 准备一个简单的项目架构

3 idea启动多个服务实例

4 修改nginx的配置文件

5 测试访问


1 下载nginx

官网地址:https://nginx.org/en/download.html

可以选择自己想要的操作系统和版本,小编这里使用的是windows的1.24版本 

解压后在文件夹目录下点击nginx.exe,这里应该会一闪而过,不用担心,应该是启动成功了,我们可以鼠标右键打开任务管理器输入nginx

然后输入127.0.0.1出现这个页面,表示nginx已经安装成功

 

2 准备一个简单的项目架构

这里我们就正常启动我们的项目,源端口8088

3 idea启动多个服务实例

快捷键ctrl + d复制一个实例然后修改端口后启动,这样就可以启动多个实例了。

 这里我启动了三个实例,端口分别是8086 8087 8088 

4 修改nginx的配置文件

文件路径在nginx:tag/conf/nginx.conf 这里是我的全部配置文件,你们可以自定义修改


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

     # 定义负载均衡的后端服务器
    upstream backend_servers {
        server 127.0.0.1:8086;  # 后端服务器1
        server 127.0.0.1:8087;  # 后端服务器2
        server 127.0.0.1:8088;  # 后端服务器3
    }

    server {
        listen       8888;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        # location / {
        #     root   html;
        #     index  index.html index.htm;
        # }

         location / {
            proxy_pass http://backend_servers;  # 将请求转发到upstream定义的服务器组
            proxy_set_header Host $host;  # 保持请求头的Host
            proxy_set_header X-Real-IP $remote_addr;  # 保持客户端真实IP
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  # 传递客户端真实IP链
            proxy_set_header X-Forwarded-Proto $scheme;  # 保持协议(http/https)
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

然后重新启动nginx ,你也可以自定义一些负载均衡策略:轮询、最小连接数这些。

5 测试访问

此时我们通过访问127.0.0.1:8888/路径的一些资源就会代理到127.0.0.1:8086/8087/8088 上

此时我们访问127.0.0.1:8888/captchaImage 注:这里替换成自己的请求路径

返回控制台看见每个服务都有输出

 


http://www.kler.cn/a/387044.html

相关文章:

  • Nuxt.js 应用中的 schema:beforeWrite 事件钩子详解
  • 【CVPR2024】2024年CVPR的3D 目标检测的综述(还在补充中)
  • C 语言 【模拟实现内存库函数】
  • QQ 小程序已发布,但无法被搜索的解决方案
  • 比ChatGPT更酷的AI工具
  • 鸿蒙next版开发:ArkTS组件点击事件详解
  • 基于 JavaWeb 的宠物商城系统(附源码,文档)
  • 鸿蒙开发案例:七巧板
  • 排序算法简介
  • 数据库的使用05:不规范的写法与操作记录
  • VR的左右眼渲染方法
  • 如何使用 Python 语言的正则表达式进行网页数据的爬取?
  • OpenCV进阶
  • .Net Core 6.0 WebApi在Centos中部署
  • bug日常记录responded with a status of 413 (Request Entity Too Large)
  • 【redis】延迟双删策略
  • k8s笔记——核心概念
  • Axure PR 9 多级下拉选择器 设计交互
  • qt QTextFrame详解
  • 高级java每日一道面试题-2024年10月28日-RabbitMQ篇-RabbitMQ的使用场景有哪些?
  • react-copy-to-clipboard: 一个简单的 React 用于复制文本到剪贴板的组件
  • 深度学习基础—了解词嵌入
  • 《Elasticsearch 实战应用》
  • 【数据仓库】Hive 拉链表实践
  • 汽车共享行业:SpringBoot管理系统革命
  • 深入浅出WebSocket(实践聊天室demo)