# !/bin/sh # chkconfig: 345 51 49 
# description: starts the oracle dabase deamons 
# ORA_HOME=/u01/app/oracle/product/8.1.7 
ORA_OWNER=oracle 
case "$1" in 
'start') 
echo -n "Starting Oracle8i: " 
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart 
touch /var/lock/subsys/oracle8i 
echo 
;; 'stop') echo -n "Shutting down Oracle8i: " 
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut 
rm -f /var/lock/subsys/oracle8i 
echo 
;; 'restart') echo -n "Restarting Oracle8i: " 
$0 stop 
$0 start 
echo 
;; *) 
echo "Usage: oracle8i { start | stop | restart }" 
exit 1 esac 
exit 0 上面是脚本,放在/etc/rc.d/init.d/下的oracle8i中
然后运行下面的命令
# chmod 700 /etc/rc.d/init.d/oracle8i 
# whoami 
root 
# cd /etc/rc.d/init.d/ 
# chkconfig --add oracle8i 
# chkconfig --list oracle8i 
oracle8i 0:off 1:off 2:off 3:on 4:on 5:on 6:off