扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
创新互联建站是少有的成都做网站、网站制作、营销型企业网站、微信小程序定制开发、手机APP,开发、制作、设计、买友情链接、推广优化一站式服务网络公司,自2013年创立以来,坚持透明化,价格低,无套路经营理念。让网页惊喜每一位访客多年来深受用户好评
文本格式:
#!/bin/bash
#Author:wangerguiEmail: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 < 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
网页标题:监控oracle数据库以及oracle监听shell脚本
网站地址:http://kswjz.com/article/gisjep.html
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流