home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 40.ddi / root.install < prev    next >
Encoding:
Text File  |  1980-01-08  |  10.8 KB  |  426 lines

  1. :
  2.  
  3. #
  4. # $Header: root.in.pp,v 6.52 90/03/14 00:35:57 eho Exp $ root.install
  5. #
  6.  
  7. #
  8. #  root.install
  9. #
  10. #  This script can be invoked by the master installation script, oracle.install,
  11. #  or as a stand alone procedure.
  12. #
  13. #  The master script, oracle.install, sets ORACLE_HOME
  14. #  and ORACLE_OWNER before it runs this script.
  15. #  If the script is run stand-alone, then these variables must be set and
  16. #  exported before it is run.
  17. #
  18. #  Default answers are shown in square brackets.
  19. #
  20.  
  21. NETLIBNAME="nsl_s"
  22. PHYS_BLK_SIZE=2048  
  23. VNDR_NETLIBS="-lnsl_s "
  24. CHOWN=/bin/chown
  25. MAKE=make        
  26. ORACLE_LPPROG="/usr/bin/lp"
  27. ORACLE_PAGER="/usr/bin/more"
  28. ORACLE_LPSTAT="/usr/bin/lpstat"
  29.  
  30. #
  31. #  Display abort message on interrupt.
  32. #
  33. trap 'echo "ORACLE Installation Aborted!";exit' 1 2 3 15
  34.  
  35. #
  36. #  Allow verification/trace to be turned on and off.
  37. #
  38. case $ORACLE_TRACE in
  39.     T)    set -x ;;
  40. esac
  41.  
  42. #
  43. #  If LOG is not set, then send output to /dev/null.
  44. #
  45. case $LOG in
  46.     "")    LOG=/dev/null ;;
  47. esac
  48.  
  49. # Enter log message
  50. echo "
  51. Running ORACLE Super User installation (root.install)..." | tee -a $LOG
  52.  
  53. #
  54. # Determine how to suppress newline with echo command.
  55. #
  56. case ${N}$C in
  57.     "")    if echo "\c" | grep c >/dev/null 2>&1; then
  58.         N='-n'
  59.     else
  60.         C='\c'
  61.     fi ;;
  62. esac
  63.  
  64. #
  65. #  Check to make sure that required variables are set.
  66. #  If they are not, prompt user to set them and restart install.
  67. #
  68.  
  69. case $ORACLE_HOME in
  70.     "")    echo "ORACLE_HOME not set."
  71.     echo "Set and export ORACLE_HOME, then restart installation."
  72.     exit 1 ;;
  73. esac
  74.  
  75. case $INSTALL_HOME in
  76.     "")    INSTALL_HOME="$ORACLE_HOME/install"
  77.     export INSTALL_HOME ;;
  78. esac
  79.  
  80. case $ORACLE_OWNER in
  81.     "")    echo "ORACLE_OWNER not set."
  82.     echo "Set and export ORACLE_OWNER, then restart installation."
  83.     exit 1 ;;
  84. esac
  85.  
  86. #
  87. #  Define areas are created for each machine.
  88. #  Default local bin directory.
  89. LBIN=/usr/lbin
  90. #  If CASE*Designer is included, define the default location of the fonts 
  91. #  directory. Export should be done to pass it to cdes.root
  92. X_FONTS=/usr/lib/X11/fonts 
  93. export X_FONTS
  94.  
  95. LBIN=/usr/lbin
  96.  
  97. case $ALL_PRODS in
  98.    "") if [ -r $ORACLE_HOME/install/oracle.key ] ; then
  99.      ALL_PRODS=`awk -F: '{ print $2 }' $ORACLE_HOME/install/oracle.key`
  100.        fi
  101. esac
  102.  
  103. #
  104. #  Make sure effective uid is $ROOT.
  105. #
  106. > /tmp/fil$$
  107. INAME=`/bin/ls -l /tmp/fil$$ | awk '{print $3}'`
  108. rm -f /tmp/fil$$
  109. case "$INAME" in
  110.     root)    ;;
  111.     *)    echo "You must be logged in as root to run root.install."
  112.     echo "Exiting install procedure."
  113.     exit 1 ;;
  114. esac
  115.  
  116. #
  117. #Set protections on ORACLE_HOME. This is critical for unabling SQL*Net drivers.
  118. #
  119. chmod 755 $ORACLE_HOME/.
  120.  
  121. #
  122. #  Set protections on install files.
  123. #
  124. chmod 755 $ORACLE_HOME/install/*
  125. chmod 755 $ORACLE_HOME/install
  126. case $? in
  127.     0)    ;;
  128.     *)    echo "Cannot locate all ORACLE install files!"
  129.     echo "Make sure you are in the correct ORACLE directory"
  130.     echo "and that the ORACLE tape was loaded successfully."
  131.     echo "Exiting install script."
  132.     exit 1 ;;
  133. esac
  134.  
  135. echo ""
  136.  
  137. #
  138. #  Get name of Local Bin directory.
  139. #
  140. echo ""
  141. echo $N "Enter the full pathname of the local bin directory $C"
  142. DEFLT=${LBIN}; . $INSTALL_HOME/read.sh; LBIN=$RDVAR
  143.  
  144. #
  145. # Check for oracle uid in /etc/passwd; retrieve home directory & group id
  146. #
  147. echo ""
  148. echo "Checking for \"$ORACLE_OWNER\" user id..." | tee -a $LOG
  149. PW_ENTRY=`grep "^${ORACLE_OWNER}:" /etc/passwd 2> /dev/null`
  150. case $PW_ENTRY in
  151.     "")    PW_ENTRY=`(ypmatch $ORACLE_OWNER passwd.byname) 2>/dev/null` ;;
  152. esac
  153. case $PW_ENTRY in
  154.     "")    echo "Cannot find password file entry for \"$ORACLE_OWNER\" user id."
  155.     echo "Exiting install script."
  156.     exit 1 ;;
  157. esac
  158.  
  159. ORACLE_OWNER_HOME=`echo $PW_ENTRY | awk -F: '{print $6}'`
  160. GID=`echo $PW_ENTRY | awk -F: '{print $4}'`
  161.  
  162. #
  163. #  Compare oracle user's home dir. to ORACLE_HOME.  Move to $ORACLE_HOME.
  164. #
  165. case $ORACLE_OWNER_HOME in
  166.     $ORACLE_HOME)    ;;
  167.     *)    echo "ORACLE_HOME does not match the home directory for $ORACLE_OWNER."
  168.         echo $N "Okay to continue? $C"
  169.         DEFLT="N"; . $INSTALL_HOME/read.sh; ANSWER=$RDVAR
  170.     case $ANSWER in
  171.         Y|y)    ;;
  172.         *)    echo "Exiting ORACLE ROOT install script."
  173.         exit 0 ;;
  174.     esac ;;
  175. esac
  176. if [ ! -d $ORACLE_HOME ]; then
  177.     echo "The ORACLE home directory \"$ORACLE_HOME\" does not exist."
  178.     echo "Exiting install script."
  179.     exit 1
  180. fi
  181. cd $ORACLE_HOME
  182.  
  183. #
  184. #  Set up ORACLE file and group ownership.
  185. #
  186. cd $ORACLE_HOME
  187.  
  188. echo "
  189. Setting ORACLE file ownership..." | tee -a $LOG
  190. find $ORACLE_HOME/. -exec echo $N ".$C" \; -exec $CHOWN $ORACLE_OWNER {} \;
  191. echo "
  192. Setting ORACLE group ownership..." | tee -a $LOG
  193. find $ORACLE_HOME/. -exec echo $N ".$C" \; -exec chgrp $GID {} \;
  194.  
  195. echo ""
  196. case $LOG in
  197.     /dev/null)    ;;
  198.     *)    $CHOWN $ORACLE_OWNER $LOG >/dev/null 2>&1 ;;
  199. esac
  200.  
  201. #
  202. #  Create local bin directory. 
  203. #
  204. if [ ! -d $LBIN ] ; then
  205.     PARENT_DIR=`dirname $LBIN`
  206.     if [ ! -d $PARENT_DIR ] ; then
  207.         mkdir $PARENT_DIR
  208.         chmod a+w $PARENT_DIR
  209.         $CHOWN $ORACLE_OWNER $PARENT_DIR
  210.     fi
  211.     mkdir $LBIN
  212.     chmod a+w $LBIN        # allow later net.installs to write in $LBIN
  213.     $CHOWN $ORACLE_OWNER $LBIN
  214. fi
  215.  
  216. #
  217. #  Make osh (USE_ULIMIT only).
  218. #
  219. echo "Making osh program..." | tee -a $LOG
  220. cd $ORACLE_HOME/rdbms/admin
  221. $MAKE osh >> $LOG 2>&1
  222. $CHOWN root osh
  223. chmod 4711 osh
  224. echo "Copying files to $LBIN..." | tee -a $LOG
  225. cp osh $LBIN
  226. mv osh $ORACLE_HOME/bin
  227.  
  228. cd $ORACLE_HOME/bin
  229. chmod 755 dbhome oraenv coraenv
  230. cp dbhome oraenv coraenv $LBIN
  231. chmod a+w oraenv coraenv    # allow later net.installs to write new *env
  232. $CHOWN $ORACLE_OWNER $LBIN/dbhome $LBIN/oraenv $LBIN/coraenv
  233.  
  234. if [ -f $ORACLE_HOME/tcp/lib/exos/orasrv ] ; then
  235.    $CHOWN root $ORACLE_HOME/tcp/lib/exos/orasrv  # make orasrv set-uid root for security
  236.    chmod 4750 $ORACLE_HOME/tcp/lib/exos/orasrv
  237. fi
  238. if [ -f $ORACLE_HOME/tcp/lib/host/orasrv ] ; then
  239.    $CHOWN root $ORACLE_HOME/tcp/lib/host/orasrv  # make orasrv set-uid root for security
  240.    chmod 4750 $ORACLE_HOME/tcp/lib/host/orasrv
  241. fi
  242.  
  243. #
  244. #  Make sure an /etc/oratab file exists on this system
  245. #
  246. if [ ! -f /etc/oratab ] ; then
  247.     echo ""
  248.     echo "Creating /etc/oratab file..." | tee -a $LOG
  249.     cat <<!> /etc/oratab
  250. #  
  251. #  This file is used by ORACLE utilities.  It is created by root.install
  252. #  and updated by rdbms.install and the Net* installation scripts.
  253. #
  254. #  A colon, ':', is used as the field terminator.  A new line terminates
  255. #  the entry.  Lines beginning with a pound sign, '#', are comments.
  256. #
  257. #  Entries are of the form:
  258. #      \$ORACLE_SID:\$ORACLE_HOME:<N|Y>:
  259. #
  260. #  The first and second fields are the system identifier and home
  261. #  directory of the database respectively.  The third field indicates
  262. #  to the dbstart utility that the database should, "Y", or should not,
  263. #  "N", be brought up at system boot time.
  264. #
  265. #  Multiple entries with the same \$ORACLE_SID are not allowed.
  266. #
  267. #
  268. !
  269. $CHOWN $ORACLE_OWNER /etc/oratab
  270. chmod 644 /etc/oratab
  271. fi
  272.  
  273. #
  274. #  Make an entry in /etc/oratab file for this dbs.
  275. #
  276. case "$ORACLE_SID" in
  277.     "")    SID='*' ;;
  278.     *)    SID=$ORACLE_SID ;;
  279. esac
  280. FOUND=`grep "^$SID:" /etc/oratab`
  281. case "$FOUND" in
  282.     "")    echo "Updating /etc/oratab file..." | tee -a $LOG 
  283.         echo "" ;;
  284.      *)    echo "Replacing existing entry for SID in /etc/oratab..." | tee -a $LOG
  285.            #  Put comment character in front of old entry.
  286.            sed -e "s/^$SID:/# $SID:/" /etc/oratab > /tmp/oratab$$
  287.     cat /tmp/oratab$$ > /etc/oratab
  288.     rm -f /tmp/oratab$$ 2>/dev/null
  289.         echo "The previous entry is now in a comment." 
  290.     echo "" ;;
  291. esac
  292. cat <<!>> /etc/oratab
  293. $SID:$ORACLE_HOME:N
  294. !
  295.  
  296. #
  297. #  Create an oracle .profile in the home directory.
  298. #
  299. echo ""
  300. echo "Creating an ORACLE Bourne Shell profile file ($ORACLE_HOME/.profile)..." | tee -a $LOG
  301. echo ""
  302. cp $ORACLE_HOME/.profile $ORACLE_HOME/.profile.old > /dev/null 2>&1
  303. cat <<!> $ORACLE_HOME/.profile
  304. ORACLE_SID=$ORACLE_SID; export ORACLE_SID
  305. ORACLE_HOME=$ORACLE_HOME; export ORACLE_HOME
  306. #The following removes trailing colon from PATH and adds ORACLE_HOME/bin
  307. case \$PATH in
  308.     *\$ORACLE_HOME/bin*)  ;;
  309.     *:) PATH=\$PATH\$ORACLE_HOME/bin  ;;
  310.     *)  PATH=\$PATH:\$ORACLE_HOME/bin   ;;
  311. esac
  312. #Make sure the local bin directory is in the path.
  313. case \$PATH in
  314.     *$LBIN*)  ;;
  315.     *:) PATH=\$PATH$LBIN  ;;
  316.     *)  PATH=\$PATH:$LBIN   ;;
  317. esac
  318. export PATH
  319.  
  320. #ORAKITPATH is used by SQL*Forms30, SQL*Menu50, and Oracle*Terminal.
  321. ORAKITPATH=.
  322. export ORAKITPATH
  323. ORAENV_ASK=NO
  324. . oraenv
  325. ORAENV_ASK=
  326. !
  327. $CHOWN $ORACLE_OWNER $ORACLE_HOME/.profile 
  328. chmod 755 $ORACLE_HOME/.profile
  329.  
  330. #
  331. #  Create an oracle .login for csh users
  332. #  See note above concerning PATH hacking
  333. #  Check if ORACLE_HOME and ORACLE_SID are already defined in .login
  334. #  If so, then comment out the previous definitions and add new
  335. #  lines for ORACLE_HOME and ORACLE_SID.
  336. echo ""
  337. echo "Creating an ORACLE C Shell login file ($ORACLE_HOME/.login)..." | tee -a $LOG
  338. echo ""
  339. cp $ORACLE_HOME/.login $ORACLE_HOME/.login.old > /dev/null 2>&1
  340. cat <<!> $ORACLE_HOME/.login
  341. setenv ORACLE_HOME $ORACLE_HOME
  342. setenv ORACLE_SID $ORACLE_SID
  343. # The following removes trailing colon from PATH and adds ORACLE_HOME/bin
  344. echo \$PATH | grep \$ORACLE_HOME/bin > /dev/null
  345. if ( \$status ) \\
  346.     setenv PATH \`echo \$PATH | sed 's/\\(.*\\):$/\\1/'\`:\$ORACLE_HOME/bin
  347. # Make sure the local bin directory is in the path
  348. echo \$PATH | grep $LBIN > /dev/null
  349. if ( \$status ) \\
  350.     setenv PATH \`echo \$PATH | sed 's/\\(.*\\):$/\\1/'\`:$LBIN
  351.  
  352. #ORAKITPATH is used by SQL*Forms30, SQL*Menu50, and Oracle*Terminal.
  353. setenv ORAKITPATH .
  354. set ORAENV_ASK=NO
  355. source $ORACLE_HOME/bin/coraenv
  356. unset ORAENV_ASK
  357. !
  358. $CHOWN $ORACLE_OWNER $ORACLE_HOME/.login 
  359. chmod 755 $ORACLE_HOME/.login
  360.  
  361. #
  362. # Install manual pages for ORACLE products included in this set.
  363. #
  364. echo ""
  365. echo $N "Would you like to install ORACLE manual pages? $C"
  366. DEFLT="Y"; . $INSTALL_HOME/read.sh; ANSWER=$RDVAR
  367. echo ""
  368. case $ANSWER in
  369.    N|n) ;;
  370.    Q|q) exit 0 ;;
  371.  
  372.    *) if [ ! -d /usr/man ] ; then
  373.      mkdir /usr/man
  374.      chmod 755 /usr/man
  375.       fi
  376.       if [ ! -d /usr/man/cat.L ] ; then
  377.          mkdir /usr/man/cat.L
  378.      chown bin /usr/man/cat.L
  379.      chgrp bin /usr/man/cat.L
  380.          chmod 755 /usr/man/cat.L
  381.       fi
  382.       for prod in $ALL_PRODS ; do
  383.     if [ -d $ORACLE_HOME/${prod}/man ] ; then
  384.        cp $ORACLE_HOME/${prod}/man/*.l /usr/man/cat.L >/dev/null 2>&1
  385.     fi
  386.       done
  387.       cd /usr/man/cat.L
  388.       ls *.l | awk -F. '{system( "mv /usr/man/cat.L/" $1".l /usr/man/cat.L/" $1".L" )}'
  389.       cd
  390.       chown bin /usr/man/cat.L/*
  391.       chgrp bin /usr/man/cat.L/*
  392.       chmod ugo+r /usr/man/cat.L/*  ;;
  393.  
  394. esac
  395.  
  396. #
  397. #  Run product.root scripts 
  398. #
  399. for prod in $ALL_PRODS ; do
  400.    SCRIPT_NAME=`grep $prod $ORACLE_HOME/install/oracle.key | awk -F: '{print $4}'`
  401.    if [ -f ${ORACLE_HOME}/${SCRIPT_NAME}.root ] ; then
  402.        chmod 554 $ORACLE_HOME/${prod}/install/*
  403.        ${ORACLE_HOME}/${SCRIPT_NAME}.root
  404.    fi
  405. done
  406.  
  407. #
  408. #  Use "touch" to time stamp hidden file, for future verification of
  409. #  root installation.
  410. touch "$ORACLE_HOME/install/.root" 2> /dev/null
  411.  
  412. echo "    
  413. ORACLE ROOT install completed.
  414.  
  415. To complete the installation, we recommend that you now follow these steps:
  416.  
  417.     1. Enter Q at the next prompt to quit.
  418.     2. Log out  of the \"root\" userid.
  419.     3. Log in as  $ORACLE_OWNER.
  420.     4. Run the \"oracle.install\" script to install ORACLE products.
  421.  
  422. "
  423.  
  424. sync;sync;sync
  425. exit 0
  426.