Encontrei uma resposta em isto
- Edite
/etc/oratab
e altere o últimoN
no arquivo de configuração para umY
.
Assim:
orcl:/u01/app/oracle/product/11.2.0/dbhome_1:N
Para isso:
orcl:/u01/app/oracle/product/11.2.0/dbhome_1:Y
- Crie o script
/etc/init.d/dbora
.
Deve ter este conteúdo:
#!/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/11.2.0/dbhome_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 databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole"
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
;;
'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/emctl stop dbconsole"
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
;;
esac
- Em seguida, altere a permissão do script.
Assim:
chmod 750 /etc/init.d/dbora
- Adicione ao chkconfig
Assim:
chkconfig --level 345 dbora on
Teste-o com /etc/init.d/dbora start
e /etc/init.d/dbora stop
. Certifique-se de ter o caminho correto no script dbora
.