Oracle不会在系统启动时启动

时间:2016-07-01 09:54:08

标签: linux oracle startup configuration-files

我需要配置远程服务器的oracle数据库以在系统启动时启动。 我跟着this tutorial跟其他人差不多。 我不允许重启服务器,只能建议所有者在服务器上做某事。

服务器配置与教程所说的类似,但oracle数据库不会在系统启动时启动。这是/ etc / dbora和/etc/init.d/oratab文件内容:

dbora:

DbContext

的oratab:

#!/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/db_1
ORA_OWNER=oracle

if [ ! -f $ORA_HOME/bin/dbstart ]
then
    echo "Oracle startup: cannot start"
    exit
fi

case "$1" in
    'start')
        su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start" &
        su $ORA_OWNER -c $ORA_HOME/bin/dbstart &
        touch /var/lock/subsys/dbora
        ;;
    'stop')
        su $ORA_OWNER -c $ORA_HOME/bin/dbshut
        su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
        rm -f /var/lock/subsys/dbora
        ;;
esac

这些文件有什么问题?

1 个答案:

答案 0 :(得分:1)

只留下第一行

**# Multiple entries with the same $ORACLE_SID are not allowed.**
#
#
orcl:/u01/app/oracle/product/11.2.0/db_1:Y