用了nginx负载均衡后,在两台tomcat正常运行的情况下,访问http://localhost 速度非常快,通过测试程序也可以看出是得到的负载均衡的效果,但是我们试验性的把其中一台tomcat(server localhost:8080)关闭后,再查看http://localhost,发现反应呈现了一半反映时间快,一半反映时间非常非常慢的情况,但是最后都能得到正确结果。
然后我又把关闭的那吧tomcat实例恢复,此时再访问http://localhost,又可以很快的访问,负载均衡也运行正常了;
是nginx将一半的请求仍然发到了down掉的tomcat上,然后由于转发到宕掉的tomcat没有反映,nginx又重新分发到其它实例上处理,但是这个时间也太长了。
增加这么几个参数:
proxy_connect_timeout 100;
proxy_send_timeout 100;
proxy_read_timeout 100;
主要增加 proxy_connect_timeout 这个参数, 这个参数是连接的超时时间。 我设置成100,表示是100秒后超时会连接到另外一台服务器.
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;
proxy_connect_timeout 100;
proxy_read_timeout 100;
proxy_send_timeout 100;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}