一、简介:

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

二、下载安装:

下载nginx

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

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

启动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。然后进入F:\nginx-1.7.1\
dos环境运行命令:

start nginx
//启动nginx
nginx -s stop          // 停止nginx
nginx -s reload       // 重新加载配置文件
nginx -s quit          // 退出nginx

nginx -t
//检查配置文件是否正确

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

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

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

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

下载Tomcat6:http://mirrors.cnnic.cn/apache/tomcat/tomcat-6/v6.0.41/bin/apache-tomcat-6.0.41-windows-x86.zip

在F:\nginx-1.7.1\路径新建tomcat文件夹。把下载后的apache-tomcat-6.0.41-windows-x86.zip解压。解压后把apache-tomcat-6.0.41更名为apache-tomcat-8080。并复制几个apache-tomcat-8080分别改名为apache-tomcat-8060,apache-tomcat-8090

启动多个tomcat。修改tomcat里面的server.xml配置文件。注意以下修改的四处,各个tomcat配置里面的端口号不要有冲突。例如tomcat1里面的

Server port=18006,则另外一个就不能用此端口。其他的依次类推

《一》

  1. <!--  修改port端口:俩个tomcat不能重复,端口随意,别太小-->
  2. <Server port="18006" shutdown="SHUTDOWN">

《二》

  1. <!-- port="18081" tomcat监听端口,随意设置,别太小 -->
  2. <Connector port="18081" protocol="HTTP/1.1"
  3. connectionTimeout="20000"
  4. redirectPort="8443" />

《三》

  1. <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

《四》

  1. <Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat1">

在同一台电脑上启动两个tomcat。进入cmd命令模式,然后进入各自的tomcat路径,执行F:\nginx-1.7.1\tomcat\apache-tomcat-8090\bin>startup.bat

F:\nginx-1.7.1\tomcat\apache-tomcat-8080\bin>startup.bat。则两个不同的tomcat已经启动完成

在IE上输入http://localhost/index.jsp和http://localhost/,如果得到不同的界面表示成功

最终的nginx.conf配置如下

    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. #gzip_min_length      1000;
    42. #gzip_types         text/plain text/css application/x-javascript;
    43. #设定负载均衡的服务器列表
    44. upstream mysvr {
    45. #weigth参数表示权值,权值越高被分配到的几率越大
    46. #根据ip计算将请求分配各那个后端tomcat,许多人误认为可以解决session问题,其实并不能。
    47. #同一机器在多网情况下,路由切换,ip可能不同
    48. server 127.0.0.1:8080 weight=1;
    49. server 127.0.0.1:8090 weight=2;
    50. }
    51. #第一个虚拟主机
    52. server {
    53. #监听IP端口
    54. listen       80;
    55. #主机名
    56. server_name  localhost;
    57. #root
    58. #设置字符集
    59. #charset koi8-r;
    60. #本虚拟server的访问日志 相当于局部变量
    61. #access_log  logs/host.access.log  main;
    62. #日志文件输出格式
    63. #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    64. #                  '$status $body_bytes_sent "$http_referer" '
    65. #                  '"$http_user_agent" "$http_x_forwarded_for"';
    66. #location / {
    67. #    root   html;
    68. #    index  index.html index.htm;
    69. #}
    70. #静态文件缓存时间设置
    71. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
    72. expires 30d;
    73. }
    74. #静态文件缓存时间设置
    75. location ~ .*\.(js|css)?$ {
    76. expires 1h;
    77. }
    78. #对本server"/"启用负载均衡
    79. #如果开启了这里的location,则79行的location必须屏蔽
    80. #对各种静态还是动态的数据进行过滤
    81. #此处如果请求是.jsp、.do结尾的文件都交给Tomcat服务器
    82. #其他的交给nginx处理
    83. location ~ (\.jsp)|(\.do)$ {
    84. proxy_pass http://mysvr;
    85. proxy_redirect off;
    86. proxy_set_header Host $host;
    87. proxy_set_header X-Real-IP $remote_addr;
    88. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    89. client_max_body_size 10m;
    90. client_body_buffer_size 128k;
    91. proxy_connect_timeout 90;
    92. proxy_send_timeout 90;
    93. proxy_read_timeout 90;
    94. proxy_buffer_size 4k;
    95. proxy_buffers 4 32k;
    96. proxy_busy_buffers_size 64k;
    97. proxy_temp_file_write_size 64k;
    98. }
    99. #设定查看Nginx状态的地址
    100. location /NginxStatus {
    101. stub_status on;
    102. access_log on;
    103. auth_basic “NginxStatus”;
    104. auth_basic_user_file conf/htpasswd;
    105. }
    106. #error_page  404              /404.html;
    107. # redirect server error pages to the static page /50x.html
    108. #
    109. #error_page   500 502 503 504  /50x.html;
    110. #location = /50x.html {
    111. #    root   html;
    112. #}
    113. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    114. #
    115. #location ~ \.php$ {
    116. #    proxy_pass   http://127.0.0.1;
    117. #}
    118. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    119. #
    120. #location ~ \.php$ {
    121. #    root           html;
    122. #    fastcgi_pass   127.0.0.1:9000;
    123. #    fastcgi_index  index.php;
    124. #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    125. #    include        fastcgi_params;
    126. #}
    127. # deny access to .htaccess files, if Apache's document root
    128. # concurs with nginx's one
    129. #
    130. #location ~ /\.ht {
    131. #    deny  all;
    132. #}
    133. }
    134. # another virtual host using mix of IP-, name-, and port-based configuration
    135. server {
    136. #多监听
    137. listen       localhost:50000;
    138. #主机名
    139. server_name  LIULJ2576;
    140. #WEB文件路径
    141. root         E:/Portal;
    142. #默认首页
    143. index        HomePage.html;
    144. #location / {
    145. #    #这里相当于局部变量
    146. #    root   E:/Portal;
    147. #    index  HomePage.html;
    148. #}
    149. }
    150. # HTTPS server HTTPS SSL加密服务器
    151. #
    152. #server {
    153. #    listen       443;
    154. #    server_name  localhost;
    155. #    ssl                  on;
    156. #    ssl_certificate      cert.pem;
    157. #    ssl_certificate_key  cert.key;
    158. #    ssl_session_timeout  5m;
    159. #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    160. #    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
    161. #    ssl_prefer_server_ciphers   on;
    162. #    location / {
    163. #        root   html;
    164. #        index  index.html index.htm;
    165. #    }
    166. #}
    167. }

搭建Nginx+Java环境测试并且运行的更多相关文章

  1. 搭建Nginx+JAVA环境

    搭建Nginx+JAVA环境 Apache对Java的支持很灵活,他们的结合度也很高,例如Apache+Tomcat和Apache+resin等都可以实现对Java应用的支持.Apache一般采用一个 ...

  2. 搭建基于java环境

    .net项目架构改造之搭建基于java环境配置一览[上]   最近公司做了一个项目,需要嵌套在千牛的客户端上,项目代码必须上阿里的聚石塔,全程采用基于docker的自动化部署,我们的项目是基于.net ...

  3. 使用docker快速搭建nginx+php环境

    在朋友的强烈推荐下,走上了docker之路.经过了繁琐的docker环境安装,看了下镜像/容器的简单使用,开始进行nginx+php环境的搭建,本文记录一下在安装过程中的笔记. 原文地址:代码汇个人博 ...

  4. PHP-Windows下搭建Nginx+PHP环境

    项目中光用Nginx了, 由于有运维人员, 很少搭建Nginx服务器, 开发也就用用Apache, 搭过几次Nginx也忘的快, 每次都去翻别人博客, 今天重搭特此记录, 装前最好了解下FastCGI ...

  5. docker一键搭建Nginx+PHP环境(含自动部署命令)

    文章的主要部分是一步一步的教程,文章的最后是我整理好的一键安装命令,自动下载并安装docker,构建镜像,启动容器集群(压缩包内注释覆盖范围达到80%) 大家可以看完教程亲自尝试下,也可以直接执行一键 ...

  6. 在Windows系统搭建.NET Core环境并创建运行ASP.NET网站

    微软于6月27日在红帽DevNation峰会上 正式发布了.NET Core 1.0.ASP.NET 1.0和Entity Framework Core 1.0,其将全部支持Windows.OS X和 ...

  7. java环境设置与运行

    在初学java编程语言时,痛苦的事莫过于跟着示例一步步做,总是得不到想要的结果,这是很多初学者都会碰到的问题.下面详细教你运行第一个java应用程序(环境windows xp + jdk 6.0): ...

  8. .net项目架构改造之搭建基于java环境配置一览【上】

    最近公司做了一个项目,需要嵌套在千牛的客户端上,项目代码必须上阿里的聚石塔,全程采用基于docker的自动化部署,我们的项目是基于.net架构.很遗憾 的是基于windows的docker上部署在访问 ...

  9. OSX10.12搭建IPv6本地环境测试APP

    前记 最近刚换了工作,生活终于又安定下来了,又可以更博了 正文 最近公司在上线APP(整体全是用JS去写的,就用了我原生的一个控制器),然后APP就去上线,就被苹果巴巴给拒了.通过阅读苹果回复的邮件, ...

随机推荐

  1. Masonry tableviewCell布局(转)

    转载自:http://www.henishuo.com/masonry-tableviewcell-layout/ 前言 说到iOS自动布局,有很多的解决办法.有的人使用xib/storyboard自 ...

  2. oracle Entity db.Database.SqlQuery ORA-01843: 无效的月份

    原因是oracle的日期格式化格式和本地语言环境的日期格式不一致导致的. 一般情景为oralce格式为英文格式 本地服务器或者开发机的环境为中文环境. 使用Dbcontext 实例一般不会有问题. 但 ...

  3. podfile The dependency `` is not used in any concrete target

    内容提要: podfile升级之后到最新版本,pod里的内容必须明确指出所用第三方库的target,否则会出现The dependency `` is not used in any concrete ...

  4. angular路由——ui.route

    angular路由 使用案例 <!DOCTYPE html> <html lang="en"> <head> <meta charset= ...

  5. UVa11427 Expect the Expected

    数学期望 概率递推 每一天的概率都是独立且相同的.可以先推出每天打i盘赢j盘的概率f[i][j] f[i][j]=f[i-1][j]*(1-p) + f[i-1][j-1]*p 输 赢 设此人打一天胜 ...

  6. javascript 原型查找 再次试探~

    前言 我们知道 对象字面量 是没有能力去查找自己原型的,它必须通过他的构造器来完成原型查找, 1本文将测试以下 a,new这个对象 之前/之后 改变构造器的原型,使其指向其他构造器的原型 b,new这 ...

  7. java 在循环中删除数组元素

    在写代码中经常会遇到需要在数组循环中删除数组元素的情况,但删除会导致数组长度变化. package com.fortunedr.thirdReport; import java.util.ArrayL ...

  8. initialization & finalization

    Delphi 的pas文件中可以有initialization和finalization两个关键字, 1.initialization关键字: 在initialization关键字到finalizat ...

  9. .NET开发人员值得关注的七个开源项目 .

    NET开发人员值得关注的七个开源项目 软近几年在.NET社区开源项目方面投入了相当多的时间和资源,不禁让原本对峙的开源社区阵营大吃一惊,从微软.NET社区中的反应来看,微软.NET开发阵营对开源工具的 ...

  10. Git学习笔记

    1.第一次提交文件的过程:     1)创建代码库:cd到要作为git代码库的文件夹下,执行git init命令.     2)设置邮箱和用户名:设置后才可提交代码,git config user.e ...