RedHat AS4 下安装oracle10g
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 六、设置oracle自动启动与关闭 1、编辑 /etc/oratab,把所有的 instance 的重启动标志设置成 'Y',如: fstest:/oracle/product/10.2.0:Y 2、做一个启动脚本 /etc/init.d/dbora ,如下所示: #!/bin/s
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入
六、设置oracle自动启动与关闭
1、编辑 /etc/oratab,把所有的 instance 的重启动标志设置成 'Y',如:
fstest:/oracle/product/10.2.0:Y
2、做一个启动脚本 /etc/init.d/dbora ,如下所示:
#!/bin/sh
# description: Oracle auto start-stop script.
# chkconfig: - 20 80
#
# 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=/oracle/product/10.2.0/
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
su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
;;
'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/lsnrctl stop"
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
;;
'restart')
$0 stop
$0 start
;;
esac
3、赋予执行权限
chmod 750 /etc/init.d/dbora
作成以下链接:
ln -s /etc/init.d/dbora /etc/rc0.d/K10dbora
ln -s /etc/init.d/dbora /etc/rc3.d/S99dbora
执行以下命令:
chkconfig --level 345 dbora on
我在u3下装过N次了,只要你按步骤做应该没有问题
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1479943
[1] [2] [3]
推荐阅读
-
虚拟机VMware下安装RedHat Linux 9.0 图解教程
-
Redhat6.8下安装Oracle11gR2
-
Redhat 6.2 下 oracle 11g R2的安装详解第1/2页
-
详解vmvare下安装linux RedHat图解(超详细篇)
-
Win7 64环境下Oracle10g 64位版本安装教程
-
WIN7下ORACLE10g服务端和客户端的安装图文教程
-
RedHat下安装Mysql5.7
-
Redhat 6.2 下 oracle 11g R2的安装详解第1/2页
-
在redhat5.8x86_64位系统下安装asm+grid+oracle11gR2的教程
-
linux Centos或者redhat系统下安装配置使用MariaDB和springboot