AIX6.1 oracle10.2.0.5 單機檔案系統,實現開機自動啟動

msdnchina發表於2011-06-12
本文參考了的文章,表示感謝。

1.在 /home/oracle目錄下,建立startdb檔案,檔案內容如下:

echo "begin to start oracle"
lsnrctl start
sqlplus / as sysdba @/home/oracle/startdbsql
echo "oracle have started"


給startdb執行許可權


2. /home/oracle/startdbsql.sql檔案,其內容如下:
startup
exit


3.在/etc下建立檔案rc.startdb,指令碼如下:
su - oracle -c "/home/oracle/startdb"

4.把啟動資訊放到/etc/inittab中,使用如下命令:

mkitab "startdb:2:wait:/etc/rc.startdb"

[@more@]

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

相關文章