作為一個AIX的系統管理者,我們需要經常的下指令df -k查看file system空間是否已滿,透過以下方式我們可以達成在file system空間90%時,自動mail通知我們,避免disk空間滿後造成系統無法運作.
(1)在IBM AIX系統寫一個檔名為 df.sh的script,內容如下:
#!/bin/sh
ADMIN="mis@ibm.com"
ALERT=90
df -g | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $4 " " $1 }' | while read output;
do
#echo $output
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge $ALERT ]; then
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
mail -s "Alert: Almost out of disk space $usep" $ADMIN
fi
done
(2)再AIX編輯crontab設定每小時固定執行df.sh當有空間>90時,即會發mail通知mis
#monitor or watch the disk space .
30 * * * * /usr/bin/su - aixadm -c "/sapmnt/AIX/exe/df.sh AIX DVEBMGS00" > /dev/null