溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

監(jiān)控oracle數(shù)據(jù)庫 以及oracle監(jiān)聽 shell腳本

發(fā)布時(shí)間:2020-07-14 00:09:32 來源:網(wǎng)絡(luò) 閱讀:788 作者:Abigale2018 欄目:數(shù)據(jù)庫

監(jiān)控oracle數(shù)據(jù)庫 以及oracle監(jiān)聽  shell腳本監(jiān)控oracle數(shù)據(jù)庫 以及oracle監(jiān)聽  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


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI