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: Enable Remote Administration in Titan

      How To: Enable Remote Administration in Titan Question How to enable remote administration in Titan? Reasoning Enabling remote administration allows administrators to manage the Titan server from a different computer. This is useful when direct ...
    • 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 - Reset Admin Account using sqllitestudiocli

      How To: Reset Admin Account using SQLliteStudio CLI Question How can you reset the admin account? Reasoning When an admin user can't log in and support ticket submission isn't possible, one way to regain access is by directly modifying or clearing ...
    • 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 ...