码迷,mamicode.com
首页 > 数据库 > 详细

oracle11gR2在rhel-6.5的开机启动脚本

时间:2014-07-28 16:59:24      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:des   os   io   for   art   ar   res   oracle   

#!/bin/bash
#chkconfig:35 98 01
#description:Startup Script for Oracle Databases
#/etc/rc.d/init.d/oracle

export ORACLE_BASE=/opt/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_LOG=$ORACLE_HOME/log
export ORACLE_OWNER=oracle

case "$1" in
    "start")
        echo -n "Starting Oracle11gR2:"
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/lsnrctl start" >>$ORACLE_LOG/ora_autostart.log
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME" >>$ORACLE_LOG/ora_autostart.log
        touch /var/lock/subsys/oracle
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/emctl start dbconsole" >>$ORACLE_LOG/ora_autostart.log
        echo "OK"
        ;;
    "stop")  
        echo -n "Shutting Down Oracle11gR2:" 
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/emctl stop dbconsole" >>$ORACLE_LOG/ora_autoshut.log
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME" >>$ORACLE_LOG/ora_autoshut.log
        su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/lsnrctl stop"  >>$ORACLE_LOG/ora_autoshut.log
        rm -f /var/lock/subsys/oracle
        echo "OK"
        ;; 
    "restart")
        $0 stop
        $0 start
        ;;
    *)
        echo "Usage: $0{start|stop|restart}"
        exit 1
        ;;
esac
exit 0



chmod a+x /etc/rc.d/init.d/oracle
chkconfig --add oracle
chkconfig --level 35 oracle on



oracle11gR2在rhel-6.5的开机启动脚本,布布扣,bubuko.com

oracle11gR2在rhel-6.5的开机启动脚本

标签:des   os   io   for   art   ar   res   oracle   

原文地址:http://my.oschina.net/javaite/blog/295423

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!