關於oracle的orainstRoot.sh解析(原)

流浪的野狼發表於2013-10-23

該檔案與oracle的oraInventory資訊相關,指令碼位於/u01/ora10g/oraInventory目錄下:根據其中的內容不難判斷該檔案的用途:

1、Create the software inventory location pointer file
2、Create the inventory directory if it doesn't exist
3、cp /u01/ora10g/oraInventory/oraInst.loc /etc/oraInst.loc(記錄oraInventory的位置資訊及初始組);

4、給出一些提示資訊


 

[oracle@RAC01 oraInventory]$ cat orainstRoot.sh
#!/bin/sh
if [ -d "/etc" ]; then
chmod 755 /etc;
fi
if [ -f "/u01/ora10g/oraInventory/oraInst.loc" ]; then
cp /u01/ora10g/oraInventory/oraInst.loc /etc/oraInst.loc;
else
INVPTR=/etc/oraInst.loc
INVLOC=/u01/ora10g/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 /u01/ora10g/oraInventory to 770.";
chmod -R 770 /u01/ora10g/oraInventory;
if [ $? != 0 ]; then
 echo "OUI-35086:WARNING: chmod of /u01/ora10g/oraInventory to 770 failed!";
fi
echo "Changing groupname of /u01/ora10g/oraInventory to oinstall.";
chgrp oinstall /u01/ora10g/oraInventory;
if [ $? != 0 ]; then
 echo "OUI-10057:WARNING: chgrp of /u01/ora10g/oraInventory to oinstall failed!";
fi
echo "The execution of the script. is complete"

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

相關文章