- 论坛徽章:
- 0
|
why "sadc" rob so much CPU load
Then I looked into the script files.
1. /etc/cron.d/sysstat:
- # run system activity accounting tool every 10 minutes
- #*/10 * * * * root /usr/lib/sa/sa1 1 1
- # generate a daily summary of process accounting at 23:53
- 53 23 * * * root /usr/lib/sa/sa2 -A
复制代码
2. /usr/lib/sa/sa1:
- #!/bin/sh
- # PREFIX/lib/sa/sa1.sh
- # (C) 1999-2002 Sebastien Godard <sebastien.godard@wanadoo.fr>;
- #
- umask 0022
- DATE=`date +%d`
- ENDIR=/usr/lib/sa
- DFILE=/var/log/sa/sa${DATE}
- cd ${ENDIR}
- if [ $# = 0 ]
- then
- exec ${ENDIR}/sadc 1 1 ${DFILE}
- else
- exec ${ENDIR}/sadc $* ${DFILE}
- fi
复制代码
Also the manpage of sadc, sa1 and sa2 was checked.
I edited the "sysstat" file to specify no intervals and counts for sa1 and let the accounting tool run at an interval of 1 minute for testing purpose. But things remained the same----the process sadc kept running endless, and another 1 minute more, another process sadc joined in. So I can imagine that as time passing by, more and more sadcs will come. :em12:
Finally and hopefullessly, I have to stop this accounting tool by editing the line in /etc/cron.d/sysstat with a cute "#".
Still wondering. |
|