【指令碼】UNIX平臺orainstRoot.sh指令碼作用

fjzcau發表於2012-04-30
我們在使用 Universal Installer(OUI)在UNIX平臺上安裝Oracle軟體的快結束的時候會提示我們要執行orainstRoot.sh指令碼。執行這個目的是什麼呢?以Linux平臺的版本Oracle為例我們一起探索一下。[@more@]
1.orainstRoot.sh指令碼內容

[root@secdb ~]# ls -l /oracle/oraInventory/orainstRoot.sh
-rwxrwx--- 1 oracle oinstall 1614 Dec 21 2010 /oracle/oraInventory/orainstRoot.sh
[root@secdb ~]# cat /oracle/oraInventory/orainstRoot.sh
#!/bin/sh
AWK=/bin/awk
CHMOD=/bin/chmod
CHGRP=/bin/chgrp
CP=/bin/cp
ECHO=/bin/echo
MKDIR=/bin/mkdir
RUID=`/usr/bin/id|$AWK -F( '{print $2}'|$AWK -F) '{print $1}'`
if [ ${RUID} != "root" ];then
$ECHO "This script. must be executed as root"
exit 1
fi
if [ -d "/etc" ]; then
$CHMOD 755 /etc;
else
$MKDIR -p /etc;
fi
if [ -f "/oracle/oraInventory/oraInst.loc" ]; then
$CP /oracle/oraInventory/oraInst.loc /etc/oraInst.loc;
$CHMOD 644 /etc/oraInst.loc
else
INVPTR=/etc/oraInst.loc
INVLOC=/oracle/oraInventory
GRP=oinstall
PTRDIR="`dirname $INVPTR`";
# Create the software inventory location pointer file
if [ ! -d "$PTRDIR" ]; then
$MKDIR -p $PTRDIR;
fi
$ECHO "Creating the Oracle inventory pointer file ($INVPTR)";
$ECHO inventory_loc=$INVLOC > $INVPTR
$ECHO inst_group=$GRP >> $INVPTR
chmod 644 $INVPTR
# Create the inventory directory if it doesn't exist
if [ ! -d "$INVLOC" ];then
$ECHO "Creating the Oracle inventory directory ($INVLOC)";
$MKDIR -p $INVLOC;
fi
fi
$ECHO "Changing permissions of /oracle/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
";
$CHMOD -R g+rw,o-rwx /oracle/oraInventory;
if [ $? != 0 ]; then
$ECHO "OUI-35086:WARNING: chmod of /oracle/oraInventory
Adding read,write permissions for group.
,Removing read,write,execute permissions for world.
failed!";
fi
$ECHO "Changing groupname of /oracle/oraInventory to oinstall.";
$CHGRP -R oinstall /oracle/oraInventory;
if [ $? != 0 ]; then
$ECHO "OUI-10057:WARNING: chgrp of /oracle/oraInventory to oinstall failed!";
fi
$ECHO "The execution of the script. is complete."

從註釋上可以得出指令碼的功能描述。
# Create the software inventory location pointer file
# Create the inventory directory if it doesn't exist

因此orainstRoot.sh指令碼作用就是建立Oracle軟體清單的指向檔案。

2.指向檔案內容
[root@secdb ~]# cat /etc/oraInst.loc
inventory_loc=/oracle/oraInventory
inst_group=oinstall

此檔案給出了Oracle軟體安裝清單目錄和屬組的名字。

3.小結
10g版本的orainstRoot.sh指令碼相對於早期版本來講,編寫方法有所改進,靈活性也增加了很多。這裡建議大家在探索Oracle世界的時候密切關注一切細節,往往從這些細節中我們會有很多意想不到的收穫,例如這裡提到的指令碼編寫技巧就值得我們體會。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22661144/viewspace-1058084/,如需轉載,請註明出處,否則將追究法律責任。

相關文章