ablog

不器用で落着きのない技術者のメモ

11gR1 RAC の oprocd

ps で確認しても、

-bash-3.00$ ps -ef|grep [o]procd
-bash-3.00$ ptree -ac
...
    [process contract 141]
      13521 /bin/sh /etc/init.d/init.cssd fatal
        14110 /bin/sh /etc/init.d/init.cssd oclsvmon
          14212 /bin/sh -c cd /opt/crs/product/11.1.0/log/consfire1/cssd/oclsvmon; ulimit -c un
            14213 /opt/crs/product/11.1.0/bin/oclsvmon.bin
        14127 /bin/sh /etc/init.d/init.cssd oclsomon
          14267 /bin/sh -c cd /opt/crs/product/11.1.0/log/consfire1/cssd/oclsomon; ulimit -c un
            14268 /opt/crs/product/11.1.0/bin/oclsomon.bin
        14157 /bin/sh /etc/init.d/init.cssd daemon
          14308 /opt/crs/product/11.1.0/bin/ocssd.bin
        21419 /bin/sleep 1

oprocd がいないので、/etc/init.d/init.cssd を見てみたら、

'fatal')
(中略)
    # Only setup environment for OPROCD if 
    # 1) it is Not DISABLED for this platform 
    # 2) the daemon is installed 
    # 3) and vendor clusterware is not provided
    if [ "$DISABLE_OPROCD" = "false" ] && [ -x "$OPROCD" ] && 
       [ ! -f "$SKGXNLIB" ]; 
    then
      $RMF $NOOPROCD
    fi

となっていた。

-bash-3.00$  ls -l /opt/ORCLcluster/lib/libskgxn2.so
-r-xr-xr-x   1 root     dba        67344 Jul 15  2008 /opt/ORCLcluster/lib/libskgxn2.so

ということでした。

参考

  • Note:803661.1