How To: Turn off the Admin idle timeout

How To: Turn off the Admin idle timeout


How To: Turn off the Admin idle timeout


Question

How can we turn off the Admin idle timeout?

Answer

You can turn off the idle timeout in the Admin Console by the following NXCLI and Powershell commands

Commands to use for NXCLI and PowerShell


Using NXCLI

Authenticate & Check current LAS Idle Timeout setting:

nxcli.exe /adminUser=<your-admin-username-here> /adminPass=<your-admin-password-here> /adminHost=127.0.0.1 /adminPort=31443 /ServerName="Local Administration Server" /Target=SVR /Action=GET /Fields=cxn /authguid=native

Turn off LAS Idle Timeout setting:

nxcli.exe /adminUser=<your-admin-username-here> /adminPass=<your-admin-password-here> /adminHost=127.0.0.1 /adminPort=31443 /ServerName="Local Administration Server" /Target=SVR /Action=SET /Fields=cxn /cxn.idletimeoutenabled="0" /authguid=native


Using PowerShell

Authenticate To Admin UI via PS:

$login = Invoke-Login -UserName "<your-admin-user-here>" -PassWord "<your-admin-password-here>"

$env:SRTAuthToken = $login.Response.SessionInfo.BearerToken

Turn off LAS Idle Timeout setting:

$Cxn = new-object Titan.API.Models.SrtApiModelsApiServerParamsCxnPoco

$sp.Response.Cxn.IdleTimeoutEnabled = 0

$r = Set-SvrParam -serverGUID "Local Administration Server" -Cxn $sp.Response.Cxn

    • Related Articles

    • How To Setup Remote Admin for Titan

      How To: Setup Remote Administration for Titan Question How can I configure Remote Administration for Titan Server? Reasoning We want to manage the server remotely from another system. Answer You can easily configure your Titan Server for remote ...
    • How To: Admin multiple Titan NexGen from 1 UI

      How To: Admin multiple Titan NexGen from 1 UI Question How to install Answer Follow the step-by-step procedure below. Pre-requisites Minimum of 2 Titan Servers ( Local and Remote domain) Steps Login to one of your Titan NexGen server. Navigate to ...
    • How To: Configure Connection Limits

      Question Is it possible to configure limits on incoming user connections? Reasoning With many users connecting to Titan, I would like to limit as much as possible each session so it does not remain open indefinitely, and also control the number of ...
    • Video Tutorial: Custom Branding the Titan Server Interfaces

      In this video, a tutorial video provides step-by-step instructions in custom branding the Titan Server interfaces (Admin and User). Custom Branding the interface reinforces the value of your brand, and Titan Server supports customizing the Logo, ...
    • Titan SFTP Server Admin Page Fails to Load

      Question I installed Titan SFTP server and after trying to access the admin page for the first time on my browser, it fails to load. Reasoning In Titan SFTP/MFT the admin page is only accessible via web browser. Answer The most likely issue is due a ...