四层负载均衡
假设有三台MySQL数据库,请问怎样负载均衡?
在非HTTP协议的情况下,采用的四层负载均衡的方式负载服务。
注意:四层负载均衡中不支持域名。
案例:使用四层负载均衡实现SSH的代理,端口为1122
[root@lb01 stream]# cat ssh.conf
server {
listen 1122;
proxy_pass 172.16.1.5:22;
}
标签:负载,HTTP,stream,1122,四层,均衡
来源: https://www.cnblogs.com/Snailsys/p/15785666.html