Windows Server2016を実行するAzure仮想マシンが5つあります。仮想マシンはWebサーバーとして構成されています。 仮想マシンに負荷分散サービスを提供するLB1という名前のAzureロードバランサーがあります。 リクエストごとに、訪問者に同じWebサーバーがサービスを提供するようにする必要があります。 何を設定する必要がありますか?
正解:D
With Sticky Sessions when a client starts a session on one of your web servers, session stays on that specific server. To configure An Azure Load-Balancer For Sticky Sessions set Session persistence to Client IP or to Client IP and protocol. On the following image you can see sticky session configuration: Note: § Client IP and protocol specifies that successive requests from the same client IP address and protocol combination will be handled by the same virtual machine. § Client IP specifies that successive requests from the same client IP address will be handled by the same virtual machine. Reference: https://cloudopszone.com/configure-azure-load-balancer-for-sticky-sessions/