博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下oracle自启动
阅读量:5804 次
发布时间:2019-06-18

本文共 1504 字,大约阅读时间需要 5 分钟。

hot3.png

文档详见:

 

[root@localhost oracle]# vim /etc/oratab

$ORACLE_SID:$ORACLE_HOME:Y

[root@localhost oracle]# vim /etc/init.d/dbora

#!/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=$ORACLE_HOMEORA_OWNER=oracleif [ ! -f $ORA_HOME/bin/dbstart ]then    echo "Oracle startup: cannot start"    exitficase "$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/lsnrctl start"        su - $ORA_OWNER -c $ORA_HOME/bin/dbstart        touch /var/lock/subsys/dbora        ;;    '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        su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"        rm -f /var/lock/subsys/dbora        ;;esac

[root@localhost oracle]# chmod 750 /etc/init.d/dbora

[root@localhost oracle]# chkconfig --add dbora

在chkconfig时,若出现bash: chkconfig: command not found

[root@localhost oracle]# rpm -aq |grep chkconfigchkconfig-1.3.30.2-2.el5[root@localhost oracle]# export PATH=/sbin:$PATH[root@localhost oracle]# chkconfig

 应该可以了,重启系统吧!

转载于:https://my.oschina.net/chwencong/blog/34930

你可能感兴趣的文章
Gradle之module间依赖版本同步
查看>>
java springcloud版b2b2c社交电商spring cloud分布式微服务(十五)Springboot整合RabbitMQ...
查看>>
SpringCloud使用Prometheus监控(基于Eureka)
查看>>
10g手动创建数据库
查看>>
Spring MVC EL表达式不能显示
查看>>
【致青春】我们挥霍时间的年代
查看>>
Windwos Server 2008 R2 DHCP服务
查看>>
SAS和SATA硬盘的区别
查看>>
现代程序设计 学生情况调查
查看>>
U盘安装linux后无法引导
查看>>
C# 矩阵作业
查看>>
俺的新书《Sencha Touch实战》终于出版了
查看>>
关于数据库查询时报“query block has incorrect number of result columns”
查看>>
li下的ul----多级列表
查看>>
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>
区域生长算法
查看>>
switch语句小练习
查看>>
组合逻辑电路
查看>>
POP-一个点击带有放大还原的动画效果
查看>>
UE4材质是什么样的机制
查看>>