转载  未测

供参考

另外这篇文章也不错。http://blog.csdn.net/wang379275614/article/details/47778201

一、简介:

Tomcat在高并发环境下处理动态请求时性能很低,而在处理静态页面更加脆弱。虽然Tomcat的最新版本支持epoll,但是通过Nginx来处理静态页面要比通过Tomcat处理在性能方面好很多。

二、下载安装:

下载nginx

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

下载解压后放到C:\nginx-1.0.4(官网这样要求的,不知道放其它盘有没有问题)

启动nginx.exe,然后在浏览器输入127.0.0.1即可

配置自己的项目测试

第二环节我们使用了默认的nginx.conf 。Nginx的配置文件都存于目录conf文件下,其中nginx.conf是它的主配置文件。

以下为我加上注释并配置的新的虚拟server]

  1. #运行用户
  2. #user  nobody;
  3. #开启进程数 <=CPU数
  4. worker_processes  1;
  5. #错误日志保存位置
  6. #error_log  logs/error.log;
  7. #error_log  logs/error.log  notice;
  8. #error_log  logs/error.log  info;
  9. #进程号保存文件
  10. #pid        logs/nginx.pid;
  11. #等待事件
  12. events {
  13. #Linux下打开提高性能
  14. #use epoll;
  15. #每个进程最大连接数(最大连接=连接数x进程数)
  16. worker_connections  1024;
  17. }
  18. http {
  19. #文件扩展名与文件类型映射表
  20. include       mime.types;
  21. #默认文件类型
  22. default_type  application/octet-stream;
  23. #日志文件输出格式 这个位置相于全局设置
  24. #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
  25. #                  '$status $body_bytes_sent "$http_referer" '
  26. #                  '"$http_user_agent" "$http_x_forwarded_for"';
  27. #请求日志保存位置
  28. #access_log  logs/access.log  main;
  29. #设定请求缓冲
  30. client_header_buffer_size 1k;
  31. large_client_header_buffers 4 4k;
  32. #打开发送文件
  33. sendfile        on;
  34. #tcp_nopush     on;
  35. #keepalive_timeout  0;
  36. keepalive_timeout  65;
  37. #客户端上传文件大小控制
  38. client_max_body_size 8m;
  39. #打开gzip压缩
  40. #gzip  on;
  41. #设定负载均衡的服务器列表
  42. #upstream mysvr {
  43. #    #weigth参数表示权值,权值越高被分配到的几率越大
  44. #    #本机上的Squid开启3128端口
  45. #    #server 192.168.8.1:3128 weight=5;
  46. #    #server 192.168.8.2:80 weight=1;
  47. #    #server 192.168.8.3:80 weight=6;
  48. #}
  49. #第一个虚拟主机
  50. server {
  51. #监听IP端口
  52. listen       80;
  53. #主机名
  54. server_name  localhost;
  55. #root
  56. #设置字符集
  57. #charset koi8-r;
  58. #本虚拟server的访问日志 相当于局部变量
  59. #access_log  logs/host.access.log  main;
  60. #日志文件输出格式
  61. #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
  62. #                  '$status $body_bytes_sent "$http_referer" '
  63. #                  '"$http_user_agent" "$http_x_forwarded_for"';
  64. location / {
  65. root   html;
  66. index  index.html index.htm;
  67. }
  68. #静态文件缓存时间设置
  69. #location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${
  70. #    expires 30d;
  71. #}
  72. #静态文件缓存时间设置
  73. #location ~ .*\.(js|css)?${
  74. #    expires 1h;
  75. #}
  76. #对本server"/"启用负载均衡
  77. #location / {
  78. #    proxy_pass http://mysvr;
  79. #    proxy_redirect off;
  80. #    proxy_set_header Host $host;
  81. #    proxy_set_header X-Real-IP $remote_addr;
  82. #    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  83. #    client_max_body_size 10m;
  84. #    client_body_buffer_size 128k;
  85. #    proxy_connect_timeout 90;
  86. #    proxy_send_timeout 90;
  87. #    proxy_read_timeout 90;
  88. #    proxy_buffer_size 4k;
  89. #    proxy_buffers 4 32k;
  90. #    proxy_busy_buffers_size 64k;
  91. #    proxy_temp_file_write_size 64k;
  92. #}
  93. #设定查看Nginx状态的地址
  94. #location /NginxStatus {
  95. #    stub_status on;
  96. #    access_log on;
  97. #    auth_basic “NginxStatus”;
  98. #    auth_basic_user_file conf/htpasswd;
  99. #}
  100. #error_page  404              /404.html;
  101. # redirect server error pages to the static page /50x.html
  102. #
  103. error_page   500 502 503 504  /50x.html;
  104. location = /50x.html {
  105. root   html;
  106. }
  107. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  108. #
  109. #location ~ \.php$ {
  110. #    proxy_pass   http://127.0.0.1;
  111. #}
  112. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  113. #
  114. #location ~ \.php$ {
  115. #    root           html;
  116. #    fastcgi_pass   127.0.0.1:9000;
  117. #    fastcgi_index  index.php;
  118. #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  119. #    include        fastcgi_params;
  120. #}
  121. # deny access to .htaccess files, if Apache's document root
  122. # concurs with nginx's one
  123. #
  124. #location ~ /\.ht {
  125. #    deny  all;
  126. #}
  127. }
  128. # another virtual host using mix of IP-, name-, and port-based configuration
  129. server {
  130. #多监听
  131. listen       localhost:8666;
  132. #主机名
  133. server_name  LIULJ2576;
  134. #WEB文件路径
  135. root         E:/Portal;
  136. #默认首页
  137. index        HomePage.html;
  138. #location / {
  139. #    #这里相当于局部变量
  140. #    root   E:/Portal;
  141. #    index  HomePage.html;
  142. #}
  143. }
  144. # HTTPS server HTTPS SSL加密服务器
  145. #
  146. #server {
  147. #    listen       443;
  148. #    server_name  localhost;
  149. #    ssl                  on;
  150. #    ssl_certificate      cert.pem;
  151. #    ssl_certificate_key  cert.key;
  152. #    ssl_session_timeout  5m;
  153. #    ssl_protocols  SSLv2 SSLv3 TLSv1;
  154. #    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
  155. #    ssl_prefer_server_ciphers   on;
  156. #    location / {
  157. #        root   html;
  158. #        index  index.html index.htm;
  159. #    }
  160. #}
  161. }

#号为注释内容,我们在cmd下运行nginx

启动成功,出错的话,可以查询日志(日志路径是配置文件指定的,你可以修改存到其它位置)

访问一下第二个server 配置的localhost:8666地址,结果出现

三、Nginx可以通过以下两种方式来实现与Tomcat的耦合:

将静态页面请求交给Nginx,动态请求交给后端Tomcat处理。

将所有请求都交给后端的Tomcat服务器处理,同时利用Nginx自身的负载均衡功能进行多台Tomcat服务器的负载均衡。

下面通过两个配置实例分别讲述这两种实现

一、动态页面和静态页面分离的实例

这里假定Tomcat服务器的IP地址为192.168.12.130,同时Tomcat服务器开放的服务器端口为8080。Nginx相关配置代码如下:

  1. server {
  2. listen 80;
  3. server_name www.ixdba.net;
  4. root /web/www/html;
  5. location /img/ {
  6. alias /web/www/html/img/;
  7. }
  8. location ~ (\.jsp)|(\.do)$ {
  9. proxy_pass http://192.168.12.130:8080;
  10. proxy_redirect off;
  11. proxy_set_header Host $host;
  12. proxy_set_header X-Real-IP $remote_addr;
  13. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  14. client_max_body_size 10m;
  15. client_body_buffer_size 128k;
  16. proxy_connect_timeout 90;
  17. proxy_send_timeout 90;
  18. proxy_read_timeout 90;
  19. proxy_buffer_size 4k;
  20. proxy_buffers 4 32k;
  21. proxy_busy_buffers_size 64k;
  22. proxy_temp_file_write_size 64k;
  23. }
  24. }

在这个实例中,首先定义了一个虚拟主机www.ixdba.net,然后通过location指令将/web/www/html/img/目录下的静态文件交给Nginx来完成。最后一个location指令将所有以.jsp、.do结尾的文件都交给Tomcat服务器的8080端口来处理,即http://192.168.12.130:8080

需要特别注意的是,在location指令中使用正则表达式后,proxy_pass后面的代理路径不能含有地址链接,也就是不能写成http://192.168.12.130:8080/,或者类似http://192.168.12.130:8080/jsp的形式。在location指令不使用正则表达式时,没有此限制。

2、多个tomcat负载均衡的实例

这里假定有3台Tomcat服务器,分别开放不同的端口,地址如下:

1
2
3
192.168.12.131:8000 
192.168.12.132:8080 
192.168.12.133:8090

Nginx的相关配置代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
upstream mytomcats { 
      server 192.168.12.131:8000
      server 192.168.12.132:8080
      server 192.168.12.133:8090
  
server { 
      listen 80
      server_name www.ixdba.net; 
  
location ~* \.(jpg|gif|png|swf|flv|wma|wmv|asf|mp3|mmf|zip|rar)$ { 
       root /web/www/html/; 
  
location / { 
          proxy_pass http://mytomcats; 
          proxy_redirect off; 
          proxy_set_header Host $host; 
          proxy_set_header X-Real-IP $remote_addr; 
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
          client_max_body_size 10m; 
          client_body_buffer_size 128k; 
          proxy_connect_timeout 90
          proxy_send_timeout 90
          proxy_read_timeout 90
          proxy_buffer_size 4k; 
          proxy_buffers 4 32k; 
          proxy_busy_buffers_size 64k; 
          proxy_temp_file_write_size 64k; 

搭建nginx+tomcat+Java的负载均衡环境的更多相关文章

  1. 【转】搭建nginx+tomcat+Java的负载均衡环境

    一.简介: Tomcat在高并发环境下处理动态请求时性能很低,而在处理静态页面更加脆弱.虽然Tomcat的最新版本支持epoll,但是通过Nginx来处理静态页面要比通过Tomcat处理在性能方面好很 ...

  2. Nginx+Tomcat+Redis实现负载均衡、资源分离、session共享

    Nginx+Tomcat+Redis实现负载均衡.资源分离.session共享 CentOS安装Nginx http://centoscn.com/CentosServer/www/2013/0910 ...

  3. keepalived+nginx+tomcat+redis实现负载均衡和session共享(原创)

    keepalived+nginx+tomcat+redis实现负载均衡和session共享 直接上链接,码了一天,就不再重写了,希望能帮到大家,有问题欢迎留言交流.

  4. [转]搭建Keepalived+Nginx+Tomcat高可用负载均衡架构

    [原文]https://www.toutiao.com/i6591714650205716996/ 一.概述 初期的互联网企业由于业务量较小,所以一般单机部署,实现单点访问即可满足业务的需求,这也是最 ...

  5. Nginx+Tomcat+Memcache实现负载均衡及Session共享

    第一部分 环境介绍 部署环境: Host1:Nginx.Memcached.Tomcat1 Host2:Tomcat2 Tomcat_version:8.0.38 第二部分 Nginx+Tomcat实 ...

  6. Keepalived + Nginx + Tomcat 高可用负载均衡架构

    环境: 1.centos7.3 2.虚拟ip:192.168.217.200 3.192.168.217.11.192.168.217.12上分别部署Nginx Keepalived Tomcat并进 ...

  7. Nginx+Tomcat+Keepalived+Memcache 负载均衡动静分离技术

    一.概述 Nginx 作负载均衡器的优点许多,简单概括为: ①实现了可弹性化的架构,在压力增大的时候可以临时添加Tomcat服务器添加到这个架构里面去; ②upstream具有负载均衡能力,可以自动判 ...

  8. LVS+Keepalived+Nginx+Tomcat高可用负载均衡集群配置(DR模式,一个VIP,多个端口)

    一.概述 LVS作用:实现负载均衡 Keepalived作用:监控集群系统中各个服务节点的状态,HA cluster. 配置LVS有两种方式: 1. 通过ipvsadm命令行方式配置 2. 通过Red ...

  9. Nginx+Tomcat+Https 服务器负载均衡配置

    这篇过气了! 重新补一个:http://www.cnblogs.com/hackyo/p/6809773.html 由于需要,得搭建个nginx+tomcat+https的服务器,搜了搜网上的发现总是 ...

随机推荐

  1. Samba快速配置

    Samba是linux,unix,windows之间进行交互操作的软件组件,Sanma是基于GPL协议的自由开源软件. 快速配置samba文件服务器 1.关闭防火墙和SELinux [root@cen ...

  2. DEV皮肤颜色获取

    Skin GridSkin = GridSkins.GetSkin(UserLookAndFeel.Default.ActiveLookAndFeel); evenColor = GridSkin[G ...

  3. UIFont的常用字体

    + (UIFont *)systemFontOfSize:(CGFloat)fontSize;   系统默认字体 + (UIFont *)boldSystemFontOfSize:(CGFloat)f ...

  4. Python数据结构与算法设计总结篇

    1.Python数据结构篇 数据结构篇主要是阅读[Problem Solving with Python]( http://interactivepython.org/courselib/static ...

  5. c++ 注册类到 lua

    test.h: #ifndef __TEST_H__ #define __TEST_H__ class CTest { public: CTest(); ~CTest(); int getA(); v ...

  6. gitlab多人协作开发

    gitlab多人协同工作 本文为亨利向<Git权威指南>的作者蒋鑫老师的答疑邮件写成. 这里特别感谢蒋鑫老师对我询问gitlab的协同工作流程问题的详细解答. 蒋鑫老师的细致专业的解答让我 ...

  7. MVC Razor模板引擎 @RenderBody、@RenderPage、@RenderSection及Html.RenderPartial、Html.RenderAction

    一.Views文件夹 -> Shared文件夹下的 _Layout.cshtml 母版页 @RenderBody 当创建基于_Layout.cshtml布局页面的视图时,视图的内容会和布局页面合 ...

  8. MySQL时间段查询,无数据补0

    上一节提到分时间段统计,可是无数据的时候不显示,而此时我们需要让他显示0. 首先我们需要建一个时间表. CREATE TABLE `my_date` ( `date` date NOT NULL, P ...

  9. mac终端命令大全介绍(转)

    OSX 的文件系统 OSX 采用的Unix文件系统,所有文件都挂在跟目录 / 下面,所以不在要有Windows 下的盘符概念. 你在桌面上看到的硬盘都挂在 /Volumes 下. 比如接上个叫做 US ...

  10. jshzoi

    解题报告——2018级2016第二学期第一周作业   解题报告——2018级2016第二学期第一周作业 D 算24 题目描述 描述 给出4个小于10个正整数,你可以使用加减乘除4种运算以及括号把这4个 ...