oracle开机自启动
1.修改/etc/oratab内容
ORACLE_SID:/u01/app/oracle/product/11.2.0/db_1:N改为如下内容
# add below content
#$ORACLE_SID:$ORACLE_HOME:Y
demo:/u01/app/oracle/product/11.2.0:Y
2编辑start.sh脚本的内容
vi /home/oracle/dbstart.sh
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/11.2.0
export ORACLE_SID=orcl
/u02/oracle/ora/bin/lsnrctl start
#start the db
sqlplus "/as sysdba" <
startup
exit
eof
2.修改/etc/rc.local文件加以下内容
####################################
location :/etc/rc.local
####################################
!/bin/sh
This script. will be executed *after* all the other init scripts.
You can put your own initialization stuff in here if you don't
want to do the full Sys V style. init stuff.
touch /var/lock/subsys/local
su - oracle -c "/bin/sh /home/oracle/dbstart.sh"
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/26358285/viewspace-754819/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/26358285/viewspace-754819/
本文介绍如何配置Oracle数据库以便在系统启动时自动运行。主要步骤包括修改/etc/oratab文件、创建并编辑启动脚本以及更新/etc/rc.local文件。适用于希望简化Oracle服务管理流程的系统管理员。
2836

被折叠的 条评论
为什么被折叠?



