在windows下作nginx负载均衡测试。

nginx的配置文件如下:

worker_processes  1;

events {

worker_connections  1024;

}

http {

include      
mime.types;

default_type  application/octet-stream;

upstream localhost {

server 127.0.0.1:8080  weight=1 max_fails=2
fail_timeout=30s;

server 127.0.0.1:8081  weight=1 max_fails=2
fail_timeout=30s;

}

sendfile       
on;

keepalive_timeout  65;

server
{

listen      
80;

server_name  localhost;

listen
80;

server_name
localhost;

location
/{

proxy_pass
http://localhost;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;

}

error_page   500 502 503
504  /50x.html;

location = /50x.html {

root   html;

}

}

}

遇到这个问题,搜索网络, 发现网上也有人遇到同样的问题, 问题描述如下:

用了nginx负载均衡后,在两台tomcat正常运行的情况下,访问http://localhost
速度非常迅速,通过测试程序也可以看出是得到的负载均衡的效果,但是我们试验性的把其中一台tomcat(server
localhost:8080)关闭后,再查看http://localhost,发现反应呈现了一半反映时间快,一半反映时间非常非常慢的情况,但是最
后都能得到正确结果。

然后我又把关闭的那吧tomcat实例恢复,此时再访问http://localhost,又可以很快的访问,负载均衡也运行正常了!郁闷!

分析怀疑可能是nginx将一半的左右的请求仍然发到了宕掉的tomcat实例上了,然后由于转发到宕掉的tomcat没有反映,nginx又重新分发到其它实例上处理。

但是这个时间也太长了。当有一台宕机后,访问http://localhost有时候会现了大概30s左右的响应时间,非常郁闷!

增加这么几个参数:

proxy_connect_timeout  
300;

proxy_send_timeout     
300;

proxy_read_timeout     
300;

问题解决,主要是proxy_connect_timeout  
这个参数, 这个参数是连接的超时时间。 我设置成1,表示是1秒后超时会连接到另外一台服务器。

现在贴出NGINX的配置如下,供后来人参考:

#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;

upstream localhost {

#ip_hash;

server 127.0.0.1:8081;

server 127.0.0.1:8080;

}

#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;

server
{

listen      
80;

server_name  localhost;

listen
80;

server_name
localhost;

location
/{

proxy_pass
http://localhost;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;


   
proxy_connect_timeout      
1;

proxy_read_timeout         
1;

proxy_send_timeout         
1;

}

#charset koi8-r;

#access_log 
logs/host.access.log  main;

#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;

#   
server_name  localhost;

#   
ssl                 
on;

#   
ssl_certificate     
cert.pem;

#   
ssl_certificate_key  cert.key;

#   
ssl_session_timeout  5m;

#   
ssl_protocols  SSLv2 SSLv3 TLSv1;

#   
ssl_ciphers 
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;

#   
ssl_prefer_server_ciphers  
on;

#    location /
{

#       
root   html;

#       
index  index.html index.htm;

#    }

#}

}

windows tomcat nginx session(当一台tomcat关闭后)的更多相关文章

  1. Tomcat集群,Nginx集群,Tomcat+Nginx 负载均衡配置,Tomcat+Nginx集群

    Tomcat集群,Nginx集群,Tomcat+Nginx 负载均衡配置,Tomcat+Nginx集群 >>>>>>>>>>>> ...

  2. Windows下nginx的启动,重启,关闭功能

    @echo off rem 提供Windows下nginx的启动,重启,关闭功能 echo ==================begin======================== cls :: ...

  3. redis+tomcat+nginx session共享

    http://www.cnblogs.com/zhrxidian/p/5432886.html系列课程 简洁明了 http://blog.csdn.net/grhlove123/article/det ...

  4. Windows server 2012 R2开机进入cmd,关闭后黑屏问题

    原因分析: 因为自己在卸载IIS的时候,不小心卸载了.net framework,系统没有了图形界面(由完整模式Full变为了核心模式core),需要重新恢复.net framework4.5. 解决 ...

  5. Redis+Tomcat+Nginx集群实现Session共享,Tomcat Session共享

    Redis+Tomcat+Nginx集群实现Session共享,Tomcat Session共享 ============================= 蕃薯耀 2017年11月27日 http: ...

  6. tomcat中session在两个webapp中实现共享

    现在遇到一个需求就是要求完成简单的单点登录,通过在一个tomcat实例中放置两个webapps应用ROOT应用和CEO应用来完成在ROOT应用登录后,在CEO可以直接使用,而未在ROOT应用登录时,不 ...

  7. 高级运维(五):构建memcached服务、LNMP+memcached、使用Tomcat设置Session、Tomcat实现session共享

    一.构建memcached服务 目标: 本案例要求先快速搭建好一台memcached服务器,并对memcached进行简单的添.删.改.查操作: 1> 安装memcached软件,并启动服务d ...

  8. tomcat redis session共享

    编译redis所需要的序列化包 安装 gradle Linux & MacOS users Configure your PATH environment variable to includ ...

  9. Tomcat学习总结(10)——Tomcat多实例冗余部署

    昨天在跟群友做技术交流的时候,了解到,有很多大公司都是采用了高可用的,分布式的,实例沉余1+台.但是在小公司的同学也很多,他们反映并不是所有公司都有那样的资源来供你调度.往往公司只会给你一台机器,因为 ...

随机推荐

  1. mycat 配置文件详解

    server.xml 包含mycat的系统配置信息,它有两个标签,分别是user和system,掌握system标签的各项配置属性是mycat调优的关键. <?xml version=" ...

  2. 【AtCoder】ARC095 C-F题解

    我居然每道题都能想出来 虽然不是每道题都能写对,debug了很久/facepalm C - Many Medians 排序后前N/2个数的中位数时排序后第N/2 + 1的数 其余的中位数都是排序后第N ...

  3. 002 python语法入门

    一:基本数据类型知识点 1.基本数据类型 Number 数字 String 字符串 Bool 布尔 List 列表 Tuple 元组 Set 集合 Dictionary字典 2.分类 )标准的pyth ...

  4. mysql 函数group_concat()

    本文通过实例介绍了MySQL中的group_concat函数的使用方法,比如select group_concat(name) .MySQL中group_concat函数完整的语法如下:group_c ...

  5. 装饰 Markdown

    利用 Font Awesome 提升 Markdown 的表现能力 Font Awesome 是一个字体和图标工具包,包含人物.动物.建筑.商业.品牌等等各种主题丰富的图标符号,可以通过相应的语法添加 ...

  6. 变量覆盖漏洞学习及在webshell中的运用

    一.发生条件: 函数使用不当($$.extract().parse_str().import_request_variables()等) 开启全局变量 二.基础了解: 1.$$定义 $$代表可变变量, ...

  7. map赋值前要先初始化:assignment to entry in nil map

    注意这种map的嵌套的形式,make只初始化了map[string]T部分(T为map[int]int),所以下面的赋值会出现错误: test := make(map[string]map[int]i ...

  8. 表格插件datatables

    具体用法查看官网 https://datatables.net/ {% load staticfiles %} <!DOCTYPE html> <html lang="en ...

  9. bzoj4641 基因改造 KMP / hash

    依稀记得,$NOIP$之前的我是如此的弱小.... 完全不会$KMP$的写法,只会暴力$hash$.... 大体思路为把一个串的哈希值拆成$26$个字母的位权 即$hash(S) = \sum\lim ...

  10. 轻巧的编辑器:Sublime Text3 user设置

    开发到现在,编辑器倒用过不少,VIM.zend.my eclipse.EPP.editplus.notepad++.sublime text 2. 最初使用sublime是同学推荐的,说其何其的好,何 ...