首页 > 数据库 > Oracle > 正文

开机启动oracle的脚本

2024-08-29 13:41:52
字体:
来源:转载
供稿:网友

  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"

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表