home *** CD-ROM | disk | FTP | other *** search
- :
-
- #
- # $Header: root.in.pp,v 6.52 90/03/14 00:35:57 eho Exp $ root.install
- #
-
- #
- # root.install
- #
- # This script can be invoked by the master installation script, oracle.install,
- # or as a stand alone procedure.
- #
- # The master script, oracle.install, sets ORACLE_HOME
- # and ORACLE_OWNER before it runs this script.
- # If the script is run stand-alone, then these variables must be set and
- # exported before it is run.
- #
- # Default answers are shown in square brackets.
- #
-
- NETLIBNAME="nsl_s"
- PHYS_BLK_SIZE=2048
- VNDR_NETLIBS="-lnsl_s "
- CHOWN=/bin/chown
- MAKE=make
- ORACLE_LPPROG="/usr/bin/lp"
- ORACLE_PAGER="/usr/bin/more"
- ORACLE_LPSTAT="/usr/bin/lpstat"
-
- #
- # Display abort message on interrupt.
- #
- trap 'echo "ORACLE Installation Aborted!";exit' 1 2 3 15
-
- #
- # Allow verification/trace to be turned on and off.
- #
- case $ORACLE_TRACE in
- T) set -x ;;
- esac
-
- #
- # If LOG is not set, then send output to /dev/null.
- #
- case $LOG in
- "") LOG=/dev/null ;;
- esac
-
- # Enter log message
- echo "
- Running ORACLE Super User installation (root.install)..." | tee -a $LOG
-
- #
- # Determine how to suppress newline with echo command.
- #
- case ${N}$C in
- "") if echo "\c" | grep c >/dev/null 2>&1; then
- N='-n'
- else
- C='\c'
- fi ;;
- esac
-
- #
- # Check to make sure that required variables are set.
- # If they are not, prompt user to set them and restart install.
- #
-
- case $ORACLE_HOME in
- "") echo "ORACLE_HOME not set."
- echo "Set and export ORACLE_HOME, then restart installation."
- exit 1 ;;
- esac
-
- case $INSTALL_HOME in
- "") INSTALL_HOME="$ORACLE_HOME/install"
- export INSTALL_HOME ;;
- esac
-
- case $ORACLE_OWNER in
- "") echo "ORACLE_OWNER not set."
- echo "Set and export ORACLE_OWNER, then restart installation."
- exit 1 ;;
- esac
-
- #
- # Define areas are created for each machine.
- # Default local bin directory.
- LBIN=/usr/lbin
- # If CASE*Designer is included, define the default location of the fonts
- # directory. Export should be done to pass it to cdes.root
- X_FONTS=/usr/lib/X11/fonts
- export X_FONTS
-
- LBIN=/usr/lbin
-
- case $ALL_PRODS in
- "") if [ -r $ORACLE_HOME/install/oracle.key ] ; then
- ALL_PRODS=`awk -F: '{ print $2 }' $ORACLE_HOME/install/oracle.key`
- fi
- esac
-
- #
- # Make sure effective uid is $ROOT.
- #
- > /tmp/fil$$
- INAME=`/bin/ls -l /tmp/fil$$ | awk '{print $3}'`
- rm -f /tmp/fil$$
- case "$INAME" in
- root) ;;
- *) echo "You must be logged in as root to run root.install."
- echo "Exiting install procedure."
- exit 1 ;;
- esac
-
- #
- #Set protections on ORACLE_HOME. This is critical for unabling SQL*Net drivers.
- #
- chmod 755 $ORACLE_HOME/.
-
- #
- # Set protections on install files.
- #
- chmod 755 $ORACLE_HOME/install/*
- chmod 755 $ORACLE_HOME/install
- case $? in
- 0) ;;
- *) echo "Cannot locate all ORACLE install files!"
- echo "Make sure you are in the correct ORACLE directory"
- echo "and that the ORACLE tape was loaded successfully."
- echo "Exiting install script."
- exit 1 ;;
- esac
-
- echo ""
-
- #
- # Get name of Local Bin directory.
- #
- echo ""
- echo $N "Enter the full pathname of the local bin directory $C"
- DEFLT=${LBIN}; . $INSTALL_HOME/read.sh; LBIN=$RDVAR
-
- #
- # Check for oracle uid in /etc/passwd; retrieve home directory & group id
- #
- echo ""
- echo "Checking for \"$ORACLE_OWNER\" user id..." | tee -a $LOG
- PW_ENTRY=`grep "^${ORACLE_OWNER}:" /etc/passwd 2> /dev/null`
- case $PW_ENTRY in
- "") PW_ENTRY=`(ypmatch $ORACLE_OWNER passwd.byname) 2>/dev/null` ;;
- esac
- case $PW_ENTRY in
- "") echo "Cannot find password file entry for \"$ORACLE_OWNER\" user id."
- echo "Exiting install script."
- exit 1 ;;
- esac
-
- ORACLE_OWNER_HOME=`echo $PW_ENTRY | awk -F: '{print $6}'`
- GID=`echo $PW_ENTRY | awk -F: '{print $4}'`
-
- #
- # Compare oracle user's home dir. to ORACLE_HOME. Move to $ORACLE_HOME.
- #
- case $ORACLE_OWNER_HOME in
- $ORACLE_HOME) ;;
- *) echo "ORACLE_HOME does not match the home directory for $ORACLE_OWNER."
- echo $N "Okay to continue? $C"
- DEFLT="N"; . $INSTALL_HOME/read.sh; ANSWER=$RDVAR
- case $ANSWER in
- Y|y) ;;
- *) echo "Exiting ORACLE ROOT install script."
- exit 0 ;;
- esac ;;
- esac
- if [ ! -d $ORACLE_HOME ]; then
- echo "The ORACLE home directory \"$ORACLE_HOME\" does not exist."
- echo "Exiting install script."
- exit 1
- fi
- cd $ORACLE_HOME
-
- #
- # Set up ORACLE file and group ownership.
- #
- cd $ORACLE_HOME
-
- echo "
- Setting ORACLE file ownership..." | tee -a $LOG
- find $ORACLE_HOME/. -exec echo $N ".$C" \; -exec $CHOWN $ORACLE_OWNER {} \;
- echo "
- Setting ORACLE group ownership..." | tee -a $LOG
- find $ORACLE_HOME/. -exec echo $N ".$C" \; -exec chgrp $GID {} \;
-
- echo ""
- case $LOG in
- /dev/null) ;;
- *) $CHOWN $ORACLE_OWNER $LOG >/dev/null 2>&1 ;;
- esac
-
- #
- # Create local bin directory.
- #
- if [ ! -d $LBIN ] ; then
- PARENT_DIR=`dirname $LBIN`
- if [ ! -d $PARENT_DIR ] ; then
- mkdir $PARENT_DIR
- chmod a+w $PARENT_DIR
- $CHOWN $ORACLE_OWNER $PARENT_DIR
- fi
- mkdir $LBIN
- chmod a+w $LBIN # allow later net.installs to write in $LBIN
- $CHOWN $ORACLE_OWNER $LBIN
- fi
-
- #
- # Make osh (USE_ULIMIT only).
- #
- echo "Making osh program..." | tee -a $LOG
- cd $ORACLE_HOME/rdbms/admin
- $MAKE osh >> $LOG 2>&1
- $CHOWN root osh
- chmod 4711 osh
- echo "Copying files to $LBIN..." | tee -a $LOG
- cp osh $LBIN
- mv osh $ORACLE_HOME/bin
-
- cd $ORACLE_HOME/bin
- chmod 755 dbhome oraenv coraenv
- cp dbhome oraenv coraenv $LBIN
- chmod a+w oraenv coraenv # allow later net.installs to write new *env
- $CHOWN $ORACLE_OWNER $LBIN/dbhome $LBIN/oraenv $LBIN/coraenv
-
- if [ -f $ORACLE_HOME/tcp/lib/exos/orasrv ] ; then
- $CHOWN root $ORACLE_HOME/tcp/lib/exos/orasrv # make orasrv set-uid root for security
- chmod 4750 $ORACLE_HOME/tcp/lib/exos/orasrv
- fi
- if [ -f $ORACLE_HOME/tcp/lib/host/orasrv ] ; then
- $CHOWN root $ORACLE_HOME/tcp/lib/host/orasrv # make orasrv set-uid root for security
- chmod 4750 $ORACLE_HOME/tcp/lib/host/orasrv
- fi
-
- #
- # Make sure an /etc/oratab file exists on this system
- #
- if [ ! -f /etc/oratab ] ; then
- echo ""
- echo "Creating /etc/oratab file..." | tee -a $LOG
- cat <<!> /etc/oratab
- #
- # This file is used by ORACLE utilities. It is created by root.install
- # and updated by rdbms.install and the Net* installation scripts.
- #
- # A colon, ':', is used as the field terminator. A new line terminates
- # the entry. Lines beginning with a pound sign, '#', are comments.
- #
- # Entries are of the form:
- # \$ORACLE_SID:\$ORACLE_HOME:<N|Y>:
- #
- # The first and second fields are the system identifier and home
- # directory of the database respectively. The third field indicates
- # to the dbstart utility that the database should, "Y", or should not,
- # "N", be brought up at system boot time.
- #
- # Multiple entries with the same \$ORACLE_SID are not allowed.
- #
- #
- !
- $CHOWN $ORACLE_OWNER /etc/oratab
- chmod 644 /etc/oratab
- fi
-
- #
- # Make an entry in /etc/oratab file for this dbs.
- #
- case "$ORACLE_SID" in
- "") SID='*' ;;
- *) SID=$ORACLE_SID ;;
- esac
- FOUND=`grep "^$SID:" /etc/oratab`
- case "$FOUND" in
- "") echo "Updating /etc/oratab file..." | tee -a $LOG
- echo "" ;;
- *) echo "Replacing existing entry for SID in /etc/oratab..." | tee -a $LOG
- # Put comment character in front of old entry.
- sed -e "s/^$SID:/# $SID:/" /etc/oratab > /tmp/oratab$$
- cat /tmp/oratab$$ > /etc/oratab
- rm -f /tmp/oratab$$ 2>/dev/null
- echo "The previous entry is now in a comment."
- echo "" ;;
- esac
- cat <<!>> /etc/oratab
- $SID:$ORACLE_HOME:N
- !
-
- #
- # Create an oracle .profile in the home directory.
- #
- echo ""
- echo "Creating an ORACLE Bourne Shell profile file ($ORACLE_HOME/.profile)..." | tee -a $LOG
- echo ""
- cp $ORACLE_HOME/.profile $ORACLE_HOME/.profile.old > /dev/null 2>&1
- cat <<!> $ORACLE_HOME/.profile
- ORACLE_SID=$ORACLE_SID; export ORACLE_SID
- ORACLE_HOME=$ORACLE_HOME; export ORACLE_HOME
- #The following removes trailing colon from PATH and adds ORACLE_HOME/bin
- case \$PATH in
- *\$ORACLE_HOME/bin*) ;;
- *:) PATH=\$PATH\$ORACLE_HOME/bin ;;
- *) PATH=\$PATH:\$ORACLE_HOME/bin ;;
- esac
- #Make sure the local bin directory is in the path.
- case \$PATH in
- *$LBIN*) ;;
- *:) PATH=\$PATH$LBIN ;;
- *) PATH=\$PATH:$LBIN ;;
- esac
- export PATH
-
- #ORAKITPATH is used by SQL*Forms30, SQL*Menu50, and Oracle*Terminal.
- ORAKITPATH=.
- export ORAKITPATH
- ORAENV_ASK=NO
- . oraenv
- ORAENV_ASK=
- !
- $CHOWN $ORACLE_OWNER $ORACLE_HOME/.profile
- chmod 755 $ORACLE_HOME/.profile
-
- #
- # Create an oracle .login for csh users
- # See note above concerning PATH hacking
- # Check if ORACLE_HOME and ORACLE_SID are already defined in .login
- # If so, then comment out the previous definitions and add new
- # lines for ORACLE_HOME and ORACLE_SID.
- echo ""
- echo "Creating an ORACLE C Shell login file ($ORACLE_HOME/.login)..." | tee -a $LOG
- echo ""
- cp $ORACLE_HOME/.login $ORACLE_HOME/.login.old > /dev/null 2>&1
- cat <<!> $ORACLE_HOME/.login
- setenv ORACLE_HOME $ORACLE_HOME
- setenv ORACLE_SID $ORACLE_SID
- # The following removes trailing colon from PATH and adds ORACLE_HOME/bin
- echo \$PATH | grep \$ORACLE_HOME/bin > /dev/null
- if ( \$status ) \\
- setenv PATH \`echo \$PATH | sed 's/\\(.*\\):$/\\1/'\`:\$ORACLE_HOME/bin
- # Make sure the local bin directory is in the path
- echo \$PATH | grep $LBIN > /dev/null
- if ( \$status ) \\
- setenv PATH \`echo \$PATH | sed 's/\\(.*\\):$/\\1/'\`:$LBIN
-
- #ORAKITPATH is used by SQL*Forms30, SQL*Menu50, and Oracle*Terminal.
- setenv ORAKITPATH .
- set ORAENV_ASK=NO
- source $ORACLE_HOME/bin/coraenv
- unset ORAENV_ASK
- !
- $CHOWN $ORACLE_OWNER $ORACLE_HOME/.login
- chmod 755 $ORACLE_HOME/.login
-
- #
- # Install manual pages for ORACLE products included in this set.
- #
- echo ""
- echo $N "Would you like to install ORACLE manual pages? $C"
- DEFLT="Y"; . $INSTALL_HOME/read.sh; ANSWER=$RDVAR
- echo ""
- case $ANSWER in
- N|n) ;;
- Q|q) exit 0 ;;
-
- *) if [ ! -d /usr/man ] ; then
- mkdir /usr/man
- chmod 755 /usr/man
- fi
- if [ ! -d /usr/man/cat.L ] ; then
- mkdir /usr/man/cat.L
- chown bin /usr/man/cat.L
- chgrp bin /usr/man/cat.L
- chmod 755 /usr/man/cat.L
- fi
- for prod in $ALL_PRODS ; do
- if [ -d $ORACLE_HOME/${prod}/man ] ; then
- cp $ORACLE_HOME/${prod}/man/*.l /usr/man/cat.L >/dev/null 2>&1
- fi
- done
- cd /usr/man/cat.L
- ls *.l | awk -F. '{system( "mv /usr/man/cat.L/" $1".l /usr/man/cat.L/" $1".L" )}'
- cd
- chown bin /usr/man/cat.L/*
- chgrp bin /usr/man/cat.L/*
- chmod ugo+r /usr/man/cat.L/* ;;
-
- esac
-
- #
- # Run product.root scripts
- #
- for prod in $ALL_PRODS ; do
- SCRIPT_NAME=`grep $prod $ORACLE_HOME/install/oracle.key | awk -F: '{print $4}'`
- if [ -f ${ORACLE_HOME}/${SCRIPT_NAME}.root ] ; then
- chmod 554 $ORACLE_HOME/${prod}/install/*
- ${ORACLE_HOME}/${SCRIPT_NAME}.root
- fi
- done
-
- #
- # Use "touch" to time stamp hidden file, for future verification of
- # root installation.
- touch "$ORACLE_HOME/install/.root" 2> /dev/null
-
- echo "
- ORACLE ROOT install completed.
-
- To complete the installation, we recommend that you now follow these steps:
-
- 1. Enter Q at the next prompt to quit.
- 2. Log out of the \"root\" userid.
- 3. Log in as $ORACLE_OWNER.
- 4. Run the \"oracle.install\" script to install ORACLE products.
-
- "
-
- sync;sync;sync
- exit 0
-