我使用Bean秸秆创建了一个web应用程序。我想在负载均衡器上安装一个程序。它是Zerotier (一个程序,使您能够创建一个本地网络在互联网上)。但是,我无法找到登录到负载均衡器服务器的方法。我知道我可以直接在EC2实例中安装程序,但这里的问题是,当程序自动缩放时,程序将停止工作。
发布于 2021-12-21 05:52:12
通过进行部署或服务来安装和添加程序,不是在负载均衡器中,而是在集群中,您的负载均衡器将帮助您平均分配工作。在AWS上,它自动为您提供负载均衡器。
A load balancer serves as the single point of contact for clients. The load balancer distributes incoming application traffic across multiple targets, such as EC2 instances, in multiple Availability Zones. This increases the availability of your application. You add one or more listeners to your load balancer.https://stackoverflow.com/questions/70431078
复制相似问题