Operating System - HP-UX
1752671 Members
5483 Online
108789 Solutions
New Discussion юеВ

Re: how to turn off autologout

 
Victor Lee
Advisor

how to turn off autologout

Hi

How can I turn off the autologout feature
of csh in hpux 11? I would like to allow
login sessions to remain running indefinitely.

thx
victor
4 REPLIES 4
Steffi Jones_1
Esteemed Contributor

Re: how to turn off autologout

Hi Victor,

here is what you can do:

set autologout 0 Window will not exit.
set autologout 10 Window will logout after 10 min.

and here is the command to check the timeout setting:

echo $aoutlogout


Steffi Jones

Victor Lee
Advisor

Re: how to turn off autologout

thanks Steffi

-victor
Victor Lee
Advisor

Re: how to turn off autologout

when i do

setenv autologout 0

and then

echo $autologout

it still says 600. how can i
turn autologout off?

thx
victor
Jon Jenkins
Occasional Advisor

Re: how to turn off autologout

Rather than
setenv autologout 0
have you tried
set autologout 0?

Set ... is the way to set environment variables for HP-UX.

Setenv ... would appear to be appropriate for another OS.

Hope this helps,

Jon