[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Idle Person in Telnet
- Subject: Re: [cobalt-users] Idle Person in Telnet
- From: Kris Dahl <krislists@xxxxxxxxxxxxx>
- Date: Fri May 19 10:36:14 2000
on 5/19/00 6:33 AM, Brian Curtis at admin@xxxxxxxxxxx wrote:
> Have a look at KU (KillUser)
> http://www.technotronic.com/issue/ku/
>
> BC
>
>
> ----- Original Message -----
> From: "Mike Fritsch" <mfritsch@xxxxxxxxxxxx>
> Subject: [cobalt-users] Idle Person in Telnet
>
>
>>
>> I have a user who sits idle in telnet, is there anyway I can log the user
>> off?
>>
>> Thanks
>> Mike
You can always kill their process.
I.e.
ps -aux | grep username
get the PID for the login process
kill -9 851
where 851 is the PID.
But what do you care if somemone is idling on the server? It doesn't take
up hardly any resources at all. I tend to idle on several client's servers
over SSH so when I need to check something I don't have to login blah blah
and then execute my command.
-k