Operating System - OpenVMS
1828537 Members
2579 Online
109980 Solutions
New Discussion

Re: Set password - Timeout setting

 
SOLVED
Go to solution
Sentosa
Frequent Advisor

Set password - Timeout setting

Hi folks,

If issue command "set password" in Open VMS, it will be timeout after around 30 sec.

How can i check in the system?
Is it a system default? If yes, could i change the default?

Thank you for your answer.
Sentosa
2 REPLIES 2
John Gillings
Honored Contributor
Solution

Re: Set password - Timeout setting

Sentosa,

It's SYSGEN parameter LGI_PWD_TMO. See

SYSGEN> SHOW/LGI

for all the settings involving passwords and logins.

The LGI parameters are dynamic, to change the timeout to (say) 15 seconds use:

SYSGEN> USE ACTIVE
SYSGEN> SET LGI_PWD_TMO 15
SYSGEN> WRITE ACTIVE

BUT be aware it will revert to the old value when you reboot. To make a permanent change, add the line:

LGI_PWD_TMO=15

to MODPARAMS.DAT, run AUTOGEN and reboot.
A crucible of informative mistakes
Sentosa
Frequent Advisor

Re: Set password - Timeout setting

Thank you for all folks