千家信息网

Nginx+Tomcat怎么搭建高性能负载均衡集群

发表于:2024-11-23 作者:千家信息网编辑
千家信息网最后更新 2024年11月23日,这篇文章给大家介绍Nginx+Tomcat怎么搭建高性能负载均衡集群,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。小编准备将两套Tomcat 和一套nginx服务搭建在同一台服务
千家信息网最后更新 2024年11月23日Nginx+Tomcat怎么搭建高性能负载均衡集群

这篇文章给大家介绍Nginx+Tomcat怎么搭建高性能负载均衡集群,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

小编准备将两套Tomcat 和一套nginx服务搭建在同一台服务器上。

二、 目标

  实现高性能负载均衡的Tomcat集群:

  



1、安装nginx

编译源码需要的组件


1.zlib ngix 需要的lib库


2.pcre nginx rewrite重写使用,支持正则表达式


3.openssl 支持安全协议的站点使用


1)介质下载
库下载地址:


源码下载地址 zlib


http://www.zlib.net/


PCRE --支持正则表达式


http://www.pcre.org/


opensll安装(可选), 支持安全协议的站点


http://www.openssl.org/


nginx 下载


http://nginx.org/en/download.html




2)上传介质到linux平台、并且解压
3)编译安装
4)修改配置文件




1.编译zlib


tar xvf zlib-1.2.8.tar.gz
./configure --static --prefix=/usr/local/libs/zlib
make
make install
2.编译openssl


tar xvf openssl-1.0.le.tar.gz
./config --prefix=/usr/local/openssl
make
make install
3.编译pcre


tar xvf pcre-8.33.tar.gz
./configure --prefix=/usr/local/pcre
make
make install
4.编译ngnix


useradd nginx


tar xvf nginx-1.5.4.tar.gz
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-debug --with-openssl=/soft/openssl-1.0.le --with-zlib=/soft/zlib-1.2.8 --with-pcre=/soft/pcre-8.33 --with-http_stub_status_module --with-http_gzip_static_module --with-http_ssl_module
make
make install


备注:--with-openssl --with-zlib --with-pcre这3个路径是他们对应的源码路径.




启动nginx服务
cd /usr/local/nginx
./nginx
查看nginx进程是否正常
ps -ef|grep nginx



2、安装tomcat

在tomcat官网下载tomcat介质

上传Linux服务器上解压并修改配置文件
[root@mysql tomcat]# pwd
/usr/local/tomcat

[root@mysql tomcat1]# pwd
/usr/local/tomcat1


修改tomcat配置文件


第一套tomcat




第二套tomcat修改:



启动两套tomcat

修改nginx配置文件

配置如下(这里只进行了简单的配置,实际生产环境可以进行更详细完善配置):

vi tomcat_fzjh.conf

[html] view plain copy

  1. worker_processes 1;#工作进程的个数,一般与计算机的cpu核数一致

  2. events {

  3. worker_connections 1024;#单个进程最大连接数(最大连接数=连接数*进程数)

  4. }

  5. http {

  6. include mime.types; #文件扩展名与文件类型映射表

  7. default_type application/octet-stream;#默认文件类型

  8. sendfile on;#开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件,对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常把这个改成off。

  9. keepalive_timeout 65; #长连接超时时间,单位是秒

  10. gzip on;#启用Gizp压缩

  11. #服务器的集群

  12. upstream netitcast.com { #服务器集群名字

  13. server 127.0.0.1:18080 weight=1;#服务器配置 weight是权重的意思,权重越大,分配的概率越大。

  14. server 127.0.0.1:28080 weight=2;

  15. }

  16. #当前的Nginx的配置

  17. server {

  18. listen 80;#监听80端口,可以改成其他端口

  19. server_name localhost;############## 当前服务的域名

  20. location / {

  21. proxy_pass http://netitcast.com;

  22. proxy_redirect default;

  23. }

  24. error_page 500 502 503 504 /50x.html;

  25. location = /50x.html {

  26. root html;

  27. }

  28. }

  29. }




启动nginx服务

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/config/tomcat_fzjh.conf

关于Nginx+Tomcat怎么搭建高性能负载均衡集群就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0