简体   繁体   English

主机池中的会话是否有 session 时间限制? 在 Azure

[英]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.我试图弄清楚当用户登录到主机池 VM 时,我们是否可以找到 session 终止的剩余时间。 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.此外,主机池会话是否有特定的时间限制(如果未指定,它们可以运行多长时间。)如果碰巧有时间限制,那么用户可以登录到 session 的最大限制是多少。

Ideal time out is 4 minutes, you can increase it up to 30 minutes.理想的超时时间是 4 分钟,您可以将其增加到 30 分钟。

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感谢 Joaoma 帖子参考

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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