标签:域名 请求 ups nginx 管理 server 调用 str file
反向代理实际是通过nginx实现请求转发给具体的服务器
1 http { 2 include mime.types; 3 default_type application/octet-stream; 4 sendfile on; 5
//配置多个服务器时默认会轮流调用,一人一次,weight可设置权重 6 upstream tomcat_server_pool{ 7 server 192.168.101.5:8080 weight=10; 8 server 192.168.101.6:8080 weight=10; 9 } 10 11 server { 12 listen 80; //监听的端口号 13 server_name localhost; //对应的域名 14 location / { 15 proxy_pass http://tomcat_server_pool; 16 index index.jsp index.html index.htm; 17 } 18 } 19 20 }
高可用
为了屏蔽负载均衡服务器的宕机,需要建立一个备份机。主服务器和备份机上都运行高可用(High Availability)监控程序,通过传送诸如“I am alive”这样的信息来监控对方的运行状况。
当备份机不能在一定的时间内收到这样的信息时,它就接管主服务器的服务IP并继续提供负载均衡服务;当备份管理器又从主管理器收到“I am alive”这样的信息时,它就释放服务IP地址,
这样的主服务器就开始再次提供负载均衡服务。
标签:域名 请求 ups nginx 管理 server 调用 str file
原文地址:https://www.cnblogs.com/Allen-Wei/p/9017213.html