主頁(yè) > 知識(shí)庫(kù) > Shell實(shí)現(xiàn)的Oracle啟動(dòng)腳本分享

Shell實(shí)現(xiàn)的Oracle啟動(dòng)腳本分享

熱門(mén)標(biāo)簽:申請(qǐng)公司400電話要注意什么 聯(lián)通電話機(jī)器人怎么接 衛(wèi)星地圖標(biāo)注地名 寧波智能外呼系統(tǒng)公司 安裝外呼系統(tǒng)費(fèi)用 曲阜400電話辦理 地圖標(biāo)注輻射圖案 電銷(xiāo)機(jī)器人 劍魚(yú) 奧維互動(dòng)地圖標(biāo)注參數(shù)

Usage: sh oracled [start|stop|restart] SIDs 其中SIDs是數(shù)據(jù)庫(kù)名,多個(gè)名稱之間用逗號(hào)分隔。缺省的操作是 restart ,也可以指定需要進(jìn)行的操作( start | stop | restart )

復(fù)制代碼 代碼如下:

#!/bin/sh 
 
cmdname="restart" 
# get oracle sid information from env by default. 
oracleSID=${ORACLE_SID} 
env_oracleSID=${ORACLE_SID} 
 
function echohelp(){ 
  echo "******oracled Tool Helper******" 
  echo "Usage:sh oracled [start|stop|restart] SIDs" 
  echo "SIDs : seperated by comma" 
  exit 5 

 
function startoracle(){ 
  echo "begin to start oracle ..." 
 
  lsnrctl start 
  for curSID in `echo ${oracleSID} | awk 'BEGIN {RS=","}{ORS="\n"}{print $1}'` ; do 
    if [ "x${curSID}" = "x" ] ; then 
      continue; 
    fi 
    export ORACLE_SID=${curSID} 
 
sqlplus /nolog EOF 
 
connect /as sysdba 
startup 
exit 
exit 
 
EOF 
 
    echo "oracle DB [${curSID}] started OK." 
  done 

function stoporacle(){ 
  echo "begin to stop oracle ..." 
 
  for curSID in `echo ${oracleSID} | awk 'BEGIN {RS=","}{ORS="\n"}{print $1}'` ; do 
    if [ "x${curSID}" = "x" ] ; then 
      continue; 
    fi 
    export ORACLE_SID=${curSID} 
 
sqlplus /nolog EOF 
 
connect /as sysdba 
shutdown immediate 
exit 
exit 
 
EOF 
 
    echo "oracle DB [${curSID}] stopped OK." 
  done 
  lsnrctl stop 

function restartoracle(){ 
  stoporacle 
  startoracle 

 
 
if [ $# -lt 1 ] ; then 
  echohelp 
fi 
 
until [ $# -eq 0 ] 
do 
  tmpVOrg=$1 
  tmpV=`echo "${tmpVOrg}" | awk '{printf "%s",$1}' | tr '[A-Z]' '[a-z]'` 
  if [ $tmpV = "start" -o $tmpV = "restart" -o $tmpV = "stop" ] ; then 
    cmdname=${tmpV} 
  elif [ $tmpV = "--help" -o $tmpV = "-h" ] ; then 
    echohelp 
  else 
    oracleSID=$tmpVOrg 
  fi 
 
  shift 
done 
 
if [ "x${cmdname}" = "x" ] ; then 
  echohelp 
fi 
 
${cmdname}oracle 
 
export ORACLE_SID=${env_oracleSID} 

您可能感興趣的文章:
  • linux環(huán)境下編寫(xiě)shell腳本實(shí)現(xiàn)啟動(dòng)停止tomcat服務(wù)的方法
  • Linux啟動(dòng)jar包的shell腳本
  • 用shell腳本監(jiān)控進(jìn)程是否存在 不存在則啟動(dòng)的實(shí)例
  • Shell實(shí)現(xiàn)判斷進(jìn)程是否存在并重新啟動(dòng)腳本分享
  • CentOS下redis自啟動(dòng)shell腳本
  • 如何利用shell開(kāi)發(fā)keepalived啟動(dòng)腳本

標(biāo)簽:江西 三門(mén)峽 仙桃 上饒 大興安嶺 安康 大慶 遵義

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Shell實(shí)現(xiàn)的Oracle啟動(dòng)腳本分享》,本文關(guān)鍵詞  Shell,實(shí)現(xiàn),的,Oracle,啟動(dòng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell實(shí)現(xiàn)的Oracle啟動(dòng)腳本分享》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Shell實(shí)現(xiàn)的Oracle啟動(dòng)腳本分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章