萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> oracle教程 >> 在Linux上自動啟動和關閉Oracle數據庫(9i/10g/11g)

在Linux上自動啟動和關閉Oracle數據庫(9i/10g/11g)

在Oracle 1gR2或更高版本下使用RAC或ASM時,Oracle Clusterware會自動啟動和停止Oracle數據庫實 例,因此下面的過程不是必需的,對於其他情況,你就可以使用下面描述的方法了。

◆su命令

下面的描述是Oracle建議采用的自動啟動和關閉Oracle 9i實例的方法。

一旦實例創建好後,標記/etc/oratab文件設置每個實例的重啟標志為“Y”:

TSH1:/u01/app/oracle/product/9.2.0:Y

接下來,作為root用戶登陸創建一個叫做/etc/init.d/dbora的文件,包括下面的內容:

#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script.
#
# Set ORA_HOME to be equivalent to the $ORACLE_HOME
# from which you wish to execute dbstart and dbshut;
#
# Set ORA_OWNER to the user id of the owner of the
# Oracle database in ORA_HOME.
ORA_HOME=/u01/app/oracle/product/9.2.0
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle startup: cannot start"
exit
fi
case "$1" in
'start')
# Start the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
;;
'stop')
# Stop the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
;;
esac

  • 共4頁:
  • 上一頁
  • 1
  • 2
  • 3
  • 4
  • 下一頁
copyright © 萬盛學電腦網 all rights reserved