red hat el 3上装了oracle 9204,如何在系统启动时启动oracle?

发布于 2022-10-02 12:22:53 字数 51 浏览 26 评论 0

red hat el 3上面装了oracle 9204,怎样能在系统启动时让oracle实例自动启动?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

遮了一弯 2022-10-09 12:22:53

修改/etc/oratab将
*:/opt/ora9/product/9.2:N
orcl:/opt/ora9/product/9.2:N
修改为Y

#chgrp dba /etc/init.d/dbora
#chmod 750 /etc/init.d/dbora
#chkconfig --add dbora

root身份
#vi /etc/rc.local 加入
su - oracle -c 'lsnrctl start'
su - oracle -c 'dbstart'

冧九 2022-10-09 12:22:53

#chgrp dba /etc/init.d/dbora
#chmod 750 /etc/init.d/dbora
#chkconfig --add dbora
干吗用的?

笨死的猪 2022-10-09 12:22:53

我是根据如下设置的,不好用!没有任何反应!
$ORACLE_HOME/bin/dbstart and $ORACLE_HOME/bin/dbshut

You can also use $ORACLE_HOME/bin/dbstart to startup the database, and $ORACLE_HOME/bin/dbshut to shutdown the database. You can place $ORACLE_HOME/bin/dbstart into the /etc/rc.d/rc.local boot script to automatically bring up the database at system boot time. To get $ORACLE_HOME/bin/dbstart and $ORACLE_HOME/bin/dbshut working, you need to change the third field for your Oracle SID in /etc/oratab from "N" to "Y".

For example, for the Oracle SID "test" I changed the line in /etc/oratab from:

test:/opt/oracle/product/9.2.0:N
to read:
test:/opt/oracle/product/9.2.0:Y

In some cases for 9.2.0 I also had to copy the init file for my SID "test" from /opt/oracle/admin/test/pfile to $ORACLE_HOME/dbs to get dbstart and dbshut working:
cp /opt/oracle/admin/test/pfile/inittest.ora.642002224936 $ORACLE_HOME/dbs/inittest.ora
But first make sure if your init file already exists in $ORACLE_HOME/dbs!

你的好像比我的强力一些,但是也不好用,不过我没有执行这些操作:
#chgrp dba /etc/init.d/dbora
#chmod 750 /etc/init.d/dbora
#chkconfig --add

假装爱人 2022-10-09 12:22:53

发表于: 2004-10-13 13:10    发表主题:   

--------------------------------------------------------------------------------

修改/etc/oratab将
*:/opt/ora9/product/9.2:N
orcl:/opt/ora9/product/9.2:N
修改为Y

root身份
#vi /etc/rc.local 加入
su - oracle -c 'lsnrctl start'
su - oracle -c 'dbstart'

以上脚本就可以了,谢谢,不过我如果想在关机的时候把实例停掉,应该写在哪里?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文