Nginx+Tomcat实现负载均衡集群

Stella981
• 阅读 914

1.前期准备工作

1.1 安装

Nginx安装

Tomcat安装

1.2 copy两份tomcat

[root@localhost tomcat]# mkdir /usr/local/tomcat/tomcat9001
[root@localhost tomcat]# mkdir /usr/local/tomcat/tomcat9002
[root@localhost tomcat]# cp -Rf /usr/local/tomcat/apache-tomcat-8.0.49/* /usr/local/tomcat/tomcat9002
[root@localhost tomcat]# cp -Rf /usr/local/tomcat/apache-tomcat-8.0.49/* /usr/local/tomcat/tomcat9001

2.修改tomcat端口

[root@localhost tomcat]# vi tomcat9001/conf/server.xml 

<Server port="18005" shutdown="SHUTDOWN">
//9001tomcat端口号修改为9001
<Connector port="9001" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
//ajp连接器端口修改
<Connector port="18009" protocol="AJP/1.3" redirectPort="8443" />
---------------------------------------------------------------------------------------------------
[root@localhost tomcat]# vi tomcat9002/conf/server.xml 

<Server port="28005" shutdown="SHUTDOWN">
//9001tomcat端口号修改为9002
<Connector port="9002" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
//ajp连接器端口修改
<Connector port="28009" protocol="AJP/1.3" redirectPort="8443" />

2.2 测试两个tomcat是否能够启动成功

Nginx+Tomcat实现负载均衡集群

    可以看到两个tomcat都启动成功了。

2.3 测试页面

    接下来写两个测试页面用于区分。

index.html


页面1
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <title>我是tomcat9001</title>
    </head>

    <body>
        <p5>我是tomcat9001</p5>
    </body>

</html>
页面2
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <title>我是tomcat9002</title>
    </head>

    <body>
        <p5>我是tomcat9002</p5>
    </body>

</html>

3.配置nginx

    接下来配置nginx负载均衡,找到nginx配置文件。在配置文件中http{}里加入集群配置:

#服务器的集群
upstream  192.168.2.160 {  #服务器集群名字
      server    192.168.2.160:9001  weight=1; 
      server    192.168.2.160:9002  weight=2; 
}

    服务器配置   weight是权重的意思,权重越大,分配的概率越高。

    在server{}里加入:

location / {
            proxy_pass http://192.168.2.160; #要与集群名相同     
            proxy_redirect default;
}  

    完整配置:

user www www;
worker_processes 2; #设置值和CPU核心数一致
error_log /usr/local/nginx/logs/nginx_error.log crit; #日志位置和日志级别
pid /usr/local/nginx/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;
events
{
  use epoll;
  worker_connections 65535;
}
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';
  
#charset gb2312;
     
  server_names_hash_bucket_size 128;
  client_header_buffer_size 32k;
  large_client_header_buffers 4 32k;
  client_max_body_size 8m;
     
  sendfile on;
  tcp_nopush on;
  keepalive_timeout 60;
  tcp_nodelay on;
  fastcgi_connect_timeout 300;
  fastcgi_send_timeout 300;
  fastcgi_read_timeout 300;
  fastcgi_buffer_size 64k;
  fastcgi_buffers 4 64k;
  fastcgi_busy_buffers_size 128k;
  fastcgi_temp_file_write_size 128k;
  gzip on; 
  gzip_min_length 1k;
  gzip_buffers 4 16k;
  gzip_http_version 1.0;
  gzip_comp_level 2;
  gzip_types text/plain application/x-javascript text/css application/xml;
  gzip_vary on;
 
  #limit_zone crawler $binary_remote_addr 10m;
   #服务器的集群  
    upstream  192.168.2.160 {  #服务器集群名字   
        server    192.168.2.160:9001  weight=1;  
        server    192.168.2.160:9002  weight=2;  
    }    
 #下面是server虚拟主机的配置
 server
  {
    listen 80;#监听端口
    server_name localhost;#域名

location / {  
            proxy_pass http://192.168.2.160;  #与集群名相同
            proxy_redirect default;  
        }  

    index index.html index.htm index.php;
    root /usr/local/nginx/html;#站点目录
      location ~ .*\.(php|php5)?$
    {
      #fastcgi_pass unix:/tmp/php-cgi.sock;
      fastcgi_pass 127.0.0.1:9000;
      fastcgi_index index.php;
      include fastcgi.conf;
    }
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|ico)$
    {
      expires 30d;
  # access_log off;
    }
    location ~ .*\.(js|css)?$
    {
      expires 15d;
   # access_log off;
    }
    access_log off;
  }

}

    配置完毕,开始测试。

3.1 测试,启动nginx

[root@localhost conf]# /usr/local/nginx/sbin/nginx 

    启动完毕可以访问一下index页面,多刷新几次就会发现,权重比相对较高的节点,被访问的概率会更高。

Nginx+Tomcat实现负载均衡集群

Nginx+Tomcat实现负载均衡集群

到此完毕。

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这