Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Can't start 10g automatically at reboot on AIX 5.3

Re: Can't start 10g automatically at reboot on AIX 5.3

From: gazzag <gareth_at_jamms.org>
Date: 1 Jul 2005 06:16:23 -0700
Message-ID: <1120223783.941082.304290@g49g2000cwa.googlegroups.com>


I found the following information on this website http://www.oracleutilities.com/OSUtil/dbstart.html:

<quote>

Auto Start on AIX

For AIX servers, the system initialization file is /etc/inittab and the initialization script is /etc/rc. A utility (/usr/sbin/mkitab) can be used to make an entry in the inittab file. The shutdown script for AIX is /usr/sbin/shutdown, although it should not be modified to support dbshut.

 To add the dbstart utility to the AIX initialization process, the following steps can be performed:

  1. Create the script /etc/rc.oracle. The script should contain the following:

su oracle <<EOF
<$ORACLE_HOME>/bin/dbstart

EOF  2. Add the script to the inittab using the mkitab utility.

$ /usr/sbin/mkitab "rcoracle:2:wait:/etc.rc.oracle >/dev/console 2>&1"

All references to <$ORACLE_HOME> should be replaced with the actual Oracle Home directory. Now upon system startup, the dbstart utility is invoked at run level 2.
</quote>

HTH! Received on Fri Jul 01 2005 - 08:16:23 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US