linux下開機使用dbstart和dbshut自動啟動和關閉db!

warehouse發表於2008-08-07

1、利用dbstart和dbshut在開關機時自動啟動和關閉db

2、使用chkconfig增加服務,靠,叫服務準確嘛

[@more@]

1、編輯/etc/oratab檔案

TEST:/u01/app/oracle/product/9.2.0:Y (把原來的N改為Y)

2、增加Linux服務(叫服務不一定準且,反正理解意思就行,名稱為oradb10g)
2.1 cd /etc/rc.d/init.d/
touch oradb10g

chmod a+x oracle9i
2.2 vi oradb10g 並輸入以下內容:

[oracle@xys init.d]$ more oradb10g
#more /etc/rc.d/init.d/oradb10g
#!/bin/bash
#whoami
#root
#chkconfig:345 58 42 這裡注意如果db使用的raw,那麼啟動順序一定要放在rawdevices被mount之後,當然shutdown的時候一定要在rawdevices dismount之前
#description: start oracle database deamons
#
ORACLE_HOME=/opt/app/oracle/product/10.2.0/db_1
ORACLE_OWNER=oracle
case "$1" in
start)
echo -n "Starting oradb10g:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbstart"
touch /var/lock/subsys/oradb10g
echo
esac
case "$1" in
stop)
echo -n "Shutting down oradb10g:"
echo
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbshut"
rm -f /var/lock/subsys/oradb10g
echo
esac

2.3 設定oradb10g的啟動級別

cd /etc/rc.d/init.d/
chkconfig --add oradb10g
chkconfig --list oradb10g
oracle9i 0:off 1:off 2:off 3:on 4:on 5:on 6:off

2.4 測試服務
/etc/rc.d/init.d/oradb10g start
/etc/rc.d/init.d/oradb10g stop

3. 重啟linux
reboot
在linux啟動的時候,可以看到一個啟動項oradb10g,出現[OK]的時候,就表示資料庫隨系統啟動了。

3.1 重啟Linux後,檢視程式
ps -ef|grep ora

ps -ef|grep tnslsnr

3.2 sqlplus測試
sqlplus '/as sysdba'

3.3 lsnrctl status

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-1008698/,如需轉載,請註明出處,否則將追究法律責任。

相關文章