Oracle自动启动问题

发布于 2022-10-02 19:53:29 字数 1583 浏览 5 评论 0

环境:redhat enterprise linux server 3 update3,oracle9ir6(9.2.0.6)

根据oracle的文档,建立如下启动文档dbora放在/etc/init.d下面
#!/bin/sh
# 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=/opt/ora9/product/9.2
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/dbstart &
;;
'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/dbshut &
;;
Esac

发现oracle无论如何不能开机时自动启动。但是登录后运行相应脚本又能够启动数据库,不管是以root登录运行 /etc/rc.d/init.d/dbora start还是直接以oracle登录运行dbstart都可以。后来加了无数的echo语句发现开机启动执行dbstart脚本到如下命令时不再运行:
                        *)  $SQLDBA << EOF
connect / as sysdba
startup
EOF
百思不得其解。然后修改dbora脚本,把su - $ORA_OWNER -c $ORA_HOME/bin/dbstart &改为su - $ORA_OWNER -c $ORA_HOME/bin/dbstart ,即不让其在后台执行,系统顺利的实现在开机时自动启动oracle。虽然达到了目的,但是仍然不知道为什么。为什么在后台就不能顺利执行dbstart脚本呢?请shell高手指教。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文