Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

paging space almost full

Status
Not open for further replies.

michaelvv

MIS
Jan 17, 2003
70
0
0
US
Other than re-booting, how does one reclaim paging space? There is hardly anything running in the system, CPUs are 98-99% of the time idle as reported by vmstat, but the paging space is 82% full. OS is AIX 4.3.3. Suggestions are appreciated.
 

Why do you want to reclaim it?? Memory is too expensive to flood with stuff that's not needed.

If something is filling up paging space it's because it's not used. Just leave it there.
The best way to reclaim it is to shut down the process that's using it.

Cheers Henrik Morsing
Certified AIX 4.3 Systems Administration
& p690 Technical Support
 
Thanks Henrik. A while back, the paging space was full, and the machine as you would expect was extremely sluggish. I wrote a script to check periodically how full the paging space is, and send e-mail when it is more than 80% full. My problem is that I do not know how to identify the process that is doing it. It is only a matter of time before it gets full again and the machine grinds to a halt :(
 
Can you share this script of yours that checks the paging space?

/ITDJ
 
Dear Michaelvv:

I can not find the article from the link
Would you mind email to me
Thank you for your help
 
Dear michaelvv,

Could you e-mail the script to me too ?
g.grijpink@dnb.nl

Thank you.
 
Could you send it it to me as well.

per.rubensson@solar.se

Thanks
 
could you please send it to me as well..

mp2396@sbc.com

thanks
 
could you please send it to me as well..
raulgiles@yahoo.com
 
Here is a copy of what I am using to do the same, nothing fancy:

#=====================================
# Check Paging Space for values > 79% |
#=====================================
typeset -u HOST=`hostname`

for ps in `lsps -s | grep % | awk '{print $2}' |tr -d '%'`
do
case ${ps} in
80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99)
echo "WARNING: Paging Space Utilization on $HOST has reached ${ps}%!!" | mail -s $HOST you@work.com
esac
done


IBM Certified Confused - MQSeries
IBM Certified Flabbergasted - AIX 5 pSeries System Administration
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top