Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Starting 9iAS using services only
· Place the script "oracle" in the directory /sbin/init.d with
file permissions of 755.
· Create the following links o /sbin/rc3.d/K999oracle -> /sbin/init.d/oracle o /sbin/rc3.d/S999oracle -> /sbin/init.d/oracle
Script
#!/bin/sh # set ORA_OWNER to the user id of the owner of the # Oracle database in ORA_Home #
if [ ! -f $ORACLE_HOME/bin/dbstart ]
then
echo "Oracle startup: cannot start"
exit
fi
case "$1" in
start)
# start the oracle databases: # the following command assumes that the oracle login # will not prompt the user for any valuesexport ORACLE_HOME=/opt/oracle/product/10g_infra
![]() |
![]() |