简体   繁体   中英

Is there a session time limit for sessions in host pool? in Azure

I'm trying to figure if we can find the time remaining for session termination when a user logged in to the host pool VM's. Also, is there a specific time limit for the host pool session( how long can they run if not specified.) If there happens to be a time limit, then what would be the maximum limit a user can be logged into the session.

Ideal time out is 4 minutes, you can increase it up to 30 minutes.

Set time out when creating VM

Get-AzureVM -ServiceName "mySvc" -Name "MyVM1" | Add-AzureEndpoint -Name "HttpIn" -Protocol "tcp" -PublicPort 80 -LocalPort 8080 -IdleTimeoutInMinutes 15| Update-AzureVM

How to change idle timeout settings in Virtual Machines and cloud services. Thanks Joaoma post Reference

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM