Linux 系统下oracle服务自启动简单配置

Linux 系统下oracle服务自启动简单配置

1、实例启动属性
修改/etc/oratab文件,将最后一行的最后一个N改为Y
如:group114:/u01/app/oracle/product/10.2.0_1:Y


2、编写自启动服务脚本
例如可以在/etc/init.d/下建一个oradbstart文件,内容如下:
#!/bin/bash
# whoami
# root
# chkconfig: 345 51 49
# description: starts the oracle dabase deamons
#
export ORACLE_BASE=/app/oracle10
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
export ORACLE_HOME_LISTNER=$ORACLE_HOME
export ORACLE_SID=orcl
ORA_OWNER=oracle
case "$1" in
start)
echo -n "Starting oracle 10g: "
su $ORA_OWNER -lc "$ORACLE_HOME/bin/dbstart" &
su $ORA_OWNER -lc "$ORACLE_HOME/bin/lsnrctl start"
# touch /var/lock/subsys/oradbstart
echo
;;

stop)
echo -n "shutting down oracle 10g: "
su $ORA_OWNER -lc "$ORACLE_HOME/bin/dbshut" &
su $ORA_OWNER -lc "$ORACLE_HOME/bin/lsnrctl stop"
# rm -f /var/lock/subsys/oradbstart
echo
;;

restart)
echo -n "restarting oracle 10g: "
$0 stop
$0 start
echo
;;
*)

echo "Usage: $0 {start|stop}"
exit 1
;;

esac
exit 0


注意环境变量的定义,sid的名称等

3、修改/etc/init.d/oradbstart文件权限
chmod ugo+x /etc/init.d/oradbstart


4、添加服务
chkconfig --add oradbstart


设定启动级别
chkconfig --level 35 oradbstart


最后重启服务器测试oracle能否随服务器启动而启动。

你可能感兴趣的:(oracle)