#检查磁盘使用率超过90%,并且后台进程没有rman在跑,就运行 /data/script/del_dg_arch.sh 脚本清理归档
Posted liang545621
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#检查磁盘使用率超过90%,并且后台进程没有rman在跑,就运行 /data/script/del_dg_arch.sh 脚本清理归档相关的知识,希望对你有一定的参考价值。
#检查磁盘使用率超过90%,并且后台进程没有rman在跑,就运行 /data/script/del_dg_arch.sh 脚本清理归档
a=`df -m /data |tail -n 1|awk ‘{print int($5)}‘`
b=`ps -ef|grep rman|grep -v grep|wc -l`
if [[ $a -lt 90 && $b -lt 1 ]]
then
echo $a >> /home/oracle/archbak.log
echo $b >> /home/oracle/archbak.log
date >> /home/oracle/archbak.log
/data/script/del_dg_arch.sh
fi
以上是关于#检查磁盘使用率超过90%,并且后台进程没有rman在跑,就运行 /data/script/del_dg_arch.sh 脚本清理归档的主要内容,如果未能解决你的问题,请参考以下文章
shell脚本实战-实现磁盘使用率超过90%就告警的三种方法v1版