finding idle users


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting finding idle users
# 1  
Old 07-06-2005
finding idle users

I am trying to write a script that will list the idle users on my system which is running HPUX 11.11. The script is currently written as :

who -u > /home/rfm/scripts/user.txt

echo " There are currently... "
wc -l /home/rfm/scripts/user.txt
echo " User logins on System : `uname -n` "

grep "0:" /home/rfm/scripts/user.txt > idle_u.txt
grep "1:" /home/rfm/scripts/user.txt >> idle_u.txt
grep "2:" /home/rfm/scripts/user.txt >> idle_u.txt
sort -u -t ',' -k 1,1 idle_u.txt
wc -l /home/rfm/scripts/idle_u.txt

echo " Users are "IDLE" "
echo " "
echo " "
echo " IDLE User Logins "
echo " ---------------- "
echo " "
cat /home/rfm/scripts/idle_u.txt | pg
echo " "
# 2  
Old 07-06-2005
in addition

The other problem is there are multiple logins for the users. I would use this list to determine which users to force to log out. There are at least 800 logins at any given time. I would also be looking at some sort options to determine longest idle to shortest.
# 3  
Old 07-06-2005
Do you know about using the TMOUT environment variable in /etc/profile?

It will handle idle process cleanup problem for you. Set it readonly, and for the number of idle seconds before the process is killed. We use 14400. If you make it too short a duration, users will do something to prevent it from working, like stay in vi all the time.
# 4  
Old 07-06-2005
Yes and no...

I am familiar with the " TMOUT " option I have it inserted into the profile and tested it. The option works like a charm Smilie however; the option is not used " yet " because the powers that be can not decide on a time out limit or a limit for logins. Usually they wait until users can not log in and come to me to free up sessions.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Logging out idle users after a certain timeframe

We recently underwent a security audit and have a new requirement to not allow users to stay logged on overnight. In order to place this policy into effect i need a way to check for idle users and log them off. Is there any good way to enforce this policy in Solaris 10 and make it work in such a... (11 Replies)
Discussion started by: goose25
11 Replies

2. HP-UX

kill idle users

Hi, In my network we uses the NetTerm program to connect us to HP-UX 10.x server from windows workstations, but in some cases the user doesn't logout and close it by window's x button. The problem is that in HP-UX the user and all his tasks remain active and when he enter again HP-UX creates a... (12 Replies)
Discussion started by: efrenba
12 Replies

3. Shell Programming and Scripting

Killing idle users TIA

I wrote a script to kill users idle more than 1/2 hour, ignoring those in an exception list. Here is the script as it is now: #! /usr/bin/awk -f BEGIN { system("who -u | sort +5 > /tmp/loginfile"); system("echo User Sessions Killed > /tmp/killedlogins"); ... (2 Replies)
Discussion started by: PapaBear
2 Replies

4. UNIX for Advanced & Expert Users

HP-UX users get logged off while idle.

Im "supporting" at least 2500 HP-UX workstations with CAD-related software with the B.11.11 build. I cant say anymore than that because of my companys sligtly paranoid security policy . The last few days a new problem has arised from nowhere. The problem is that users gets logged off when the... (5 Replies)
Discussion started by: Laoinjo
5 Replies

5. Shell Programming and Scripting

i need a scipt to email users with idle processes!?

hello, i am VERY new to this whole script world. I need to come up with a script that will email a user if they have an idle process past 500 minutes...any suggestions??? Thanks so much. (0 Replies)
Discussion started by: sheppy28
0 Replies

6. Shell Programming and Scripting

finding idle time of a process

Matez, I have a list of process id's in a text file. I want to know how to find the idle time of a process which are more than 300secs and kill them accordingly. Could you please help me to get these details. I want to write a shell script with this. Thanks..Krish :) (36 Replies)
Discussion started by: Krrishv
36 Replies

7. Shell Programming and Scripting

Idle users over 1 day

Please help, im modifing an idle script to capture (not kill) users who havee been idle over a time. now i've got to work with the exection of users whos idle time gove over 24 hrs and becomes "old". please advice on how to correct... #Clear old report, generate new data and new report echo "\n... (1 Reply)
Discussion started by: pbonilla
1 Replies

8. Shell Programming and Scripting

script for killing idle users

I need a script that will look for idle users and kill there proc. (7 Replies)
Discussion started by: jdel80
7 Replies

9. AIX

Log off idle users

How to set a timer for log out users that have been idle for a long time? It is a AIX 5L (0 Replies)
Discussion started by: wtofu
0 Replies

10. HP-UX

Is there a script available to kill Idle users

My max user parm is set to 1050. I'm currently at 1038 this is causing major slow downs on the server. I looking for a way log off "idle" user logins with out having to do it individually. :confused: (5 Replies)
Discussion started by: rfmurphy_6
5 Replies
Login or Register to Ask a Question