Idle users over 1 day


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Idle users over 1 day
# 1  
Old 11-27-2006
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...

Code:
#Clear old report, generate new data and new report
echo "\n `date` \n" >  /tmp/idle.report
clear
who -u  > /tmp/idle.a
grep -v "\. " /tmp/idle.a > /tmp/idle.b

count=0;

while read a b c d e f g;
do
hrs=$(echo $f | awk -F: '{print $1}' )
name=$(grep $a /etc/passwd | awk -F: '{print $5}')

#Users logged in over 24 hours
if [ $hrs = `old` ] ; then
echo "UID $a \n USERNAME  $name \n IDLE FOR OVER 24 HOURS \n ON PORT $b \n TOTAL TIME OVER 24 HOURS \n" >> /tmp/idle.report
let count=$count+1

	else 

#Hours allowed
if [ $hrs -gt 8] ; then
echo " UID $a \n USERNAME  $name \n IDLE FOR $hrs HOURS \n ON PORT $b \n TOTAL TIME $f \n" >> /tmp/idle.report
let count=$count+1
fi
fi


done < /tmp/idle.b

echo "\n\n TOTAL USERS IN IDLE..:$count\n" >> /tmp/idle.report

# Only email report if there is 1 or more users that is on idle
if [ $count -gt 0 ] ; then

mailx -s "Idle report `date`" user@email.com   < /tmp/idle.report

fi

# 2  
Old 11-27-2006
Change...
Code:
if [ $hrs = `old` ]

...to...
Code:
if [ $hrs = 'old' ]

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Telnet sessions stay as idle users

Hi The telnet sessions stay as idle users. It is not getting kicked out. Please advise what could be the issue. only when we reboot the server these telnet sessions goes. Below is the current output from the server. we rebooted the server three days ago: pmut6:/> uptime 04:21PM... (8 Replies)
Discussion started by: newtoaixos
8 Replies

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. Shell Programming and Scripting

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` ... (3 Replies)
Discussion started by: rfmurphy_6
3 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