科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道开机启动oracle的脚本

开机启动oracle的脚本

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  Filename:/etc/rc2.d/S99dbora817   1.Content:   #!/bin/sh   ORACLE_HOME=/opt/oracle/product/8.1.7   case "" in   start)   su

作者:中国IT实验室 来源:中国IT实验室 2007年9月15日

关键字: 数据库 ORACLE

  • 评论
  • 分享微博
  • 分享邮件

  Filename:/etc/rc2.d/S99dbora817
  1.Content:
  #!/bin/sh
  ORACLE_HOME=/opt/oracle/product/8.1.7
  case "" in
  start)
  su - oracle -c "$ORACLE_HOME/bin/dbstart" &
  su - oracle -c "$ORACLE_HOME/bin/lsnrctl start" &
  ;;
  stop)
  su - oracle -c "$ORACLE_HOME/bin/dbshut" &
  esac
  
  2.then, modify the files dbshut and dbstart to fit your system.
  2.1. modify the dbshut's "ORATAB=/etc/oratab" to "ORATAB=/var/opt/oracle/oratab"
  2.2. modify the dbstart's "ORATAB=/etc/oratab" to "ORATAB=/var/opt/oracle/oratab"
  2.3. modify the /var/opt/oracle/oratab to "dbora817:/opt/oracle/product/8.1.7:Y"

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章