Steps to configure the automatically startup and shutdown on Linux
Once the instance is created, edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
iflex:/u01/app/oracle/product/10.1.0/db_1:Y
Next, edit the dbstart batch
vi $ORACLE_HOME/bin/dbstart
edit the line
ORACLE_HOME_LISTENER=$ORACLE_HOME
Create a file called /etc/init.d/dbora as the root user, containing the following:
#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script
ORA_HOME=/u01/app/oracle/product/10.1.0/db_1
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle Startup: cannot start"
exit
fi
case "$1" in
'start')
#start the oracle database
#The following command assumes that the oracle
#login will not prompt the user for any value
su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
touch /var/lock/subsys/dbora
;;
'stop')
#stop the oracle database
#The following command assumes that the oracle
#login will not prompt the user for any value
su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
rm -f /var/lock/subsys/dbora
;;
esac
Please pay attention two the second and the third comment line, it should begin with chkconfig and description to make it follow the chkconfig standard. Please refer the 'man chkconfig' to see the full version of this standard.
Login as root, issue the following command:
chmod 750 /etc/init.d/dbora
Associate the dbora service with the appropriate run levels and set it to auto-start using the following command:
chkconfig --add dbora
The relevant instances should now startup/shutdown automatically at the system startup and shutdown.
Once the instance is created, edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
iflex:/u01/app/oracle/product/10.1.0/db_1:Y
Next, edit the dbstart batch
vi $ORACLE_HOME/bin/dbstart
edit the line
ORACLE_HOME_LISTENER=$ORACLE_HOME
Create a file called /etc/init.d/dbora as the root user, containing the following:
#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script
ORA_HOME=/u01/app/oracle/product/10.1.0/db_1
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle Startup: cannot start"
exit
fi
case "$1" in
'start')
#start the oracle database
#The following command assumes that the oracle
#login will not prompt the user for any value
su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
touch /var/lock/subsys/dbora
;;
'stop')
#stop the oracle database
#The following command assumes that the oracle
#login will not prompt the user for any value
su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
rm -f /var/lock/subsys/dbora
;;
esac
Please pay attention two the second and the third comment line, it should begin with chkconfig and description to make it follow the chkconfig standard. Please refer the 'man chkconfig' to see the full version of this standard.
Login as root, issue the following command:
chmod 750 /etc/init.d/dbora
Associate the dbora service with the appropriate run levels and set it to auto-start using the following command:
chkconfig --add dbora
The relevant instances should now startup/shutdown automatically at the system startup and shutdown.