码迷,mamicode.com
首页 > 数据库 > 详细

监控oracle数据库 以及oracle监听 shell脚本

时间:2016-10-11 00:04:31      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:监控oracle数据库 以及oracle监听 shell脚本

技术分享技术分享

文本格式:

#!/bin/bash

#Author:wangergui Email:291131893@qq.com Date:2016-10-10

#Release 1.0

#Function: check oracle online

declare -a INSTANCE=(PROD EMREP)


[[ -f /home/oracle/.bash_profile ]] && . /home/oracle/.bash_profile || exit 3


function check_listener (){


su - oracle -c "lsnrctl status" >/dev/null 2>&1


if [[ $? -ne 0 ]];then 


su - oracle -c "lsnrctl start" >/dev/null 2>&1


[[ $? -ne 0 ]] && echo -e "\E[40;31;5m Your listener is Down!\E[0m"

fi

}

check_listener


function check_oracle (){

for name in "${INSTANCE[@]}";do

(su - oracle <<EOF


sqlplus sys/tiger@${name} as sysdba 

select status from v\$instance;

quit;


EOF

) >/home/oracle/${name}.txt


egrep -q "OPEN" /home/oracle/${name}.txt 


[[ $? -ne 0 ]] && echo -e "\E[40;31;5m Oracle ${name} is Down!\E[0m"


done

}

check_oracle


本文出自 “linux相关技术” 博客,请务必保留此出处http://wangergui.blog.51cto.com/8504247/1860421

监控oracle数据库 以及oracle监听 shell脚本

标签:监控oracle数据库 以及oracle监听 shell脚本

原文地址:http://wangergui.blog.51cto.com/8504247/1860421

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!