執行$ORACLE_HOME/bin/dbstart 啟動資料庫提示如下: [oracle@prim bin]$ ./dbstart ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net ListenerUsage: ./db ...
執行$ORACLE_HOME/bin/dbstart 啟動資料庫提示如下:
[oracle@prim bin]$ ./dbstart
ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
Usage: ./dbstart ORACLE_HOME
Processing Database instance "orcl": log file /u01/app/oracle/product/11.2.0/db_1/startup.log
很多人的做法是去修改dbstart或者dbshut 這2個文件,但事實上這個腳本是需要你在腳本後面添加一個參數,就是$ORACLE_HOME的路徑,所以根本不需要修改它原來的腳本,只需要在腳本後面接上$ORACLE_HOME的路徑就行了
eg: $ORACLE_HOME/bin/dbstart $ORACLE_HOME
設置隨開機啟動:
vi /etc/oratab
orcl:/u01/app/oracle/product/11.2.0/db_1:Y
vi /etc/rc.local
su - oracle -c ' $ORACLE_HOME/bin/dbstart $ORACLE_HOME'