- http://www-01.ibm.com/support/docview.wss?uid=nas77d16faf83372b0b386257997006f12b1

  이 문제로 10번은 재설치했건만... 버그였다니... ㅎㅎ

Director 6.3 Common Agent 설치 후, Console창에서 'bin/nonstop_aix @/var/opt/tivoli/ep/runtime/nonstop/config/nonstop.properties" 메세지가 계속 반복되는 이슈
     > alog -o -f /var/adm/ras/conslog 로도 확인 가능


cas.agent 1.4.2.40 에서 발생 > fix는 없으며 work-around로 해결해야 함
1. stopsrc -s cas_agent

2. lssrc -s cas_agent 
     > inoperative 모드로 보여져야 됨

3.  cp /var/opt/tivoli/ep/runtime/nonstop/bin/cas_src.sh /var/opt/tivoli/ep/runtime/nonstop/bin/cas_src.sh.org

4. cas_src.sh의 while 구문을 아래와 같이 수정

   ------------------
while true
do
    /usr/bin/sleep 10
    /usr/bin/ps -ef | grep nonstop_aix
    # if nonstop_aix is not found then exit
    [ "$?" -ne 0 ] && break
done
   ------------------
while true
do
        /usr/bin/sleep 10
        NONSTOP_PID1=`/usr/bin/ps -ef|/usr/bin/grep '\/var\/opt\/tivoli\/ep'|/usr/bin/grep nonstop_aix|/usr/bin/grep -v grep|/usr/bin/awk '{print $2}'`
        NONSTOP_PID2=`/usr/bin/ps -ef|/usr/bin/grep '\/opt\/ibm\/director\/agent'|/usr/bin/grep nonstop_aix|/usr/bin/grep -v grep|/usr/bin/awk '{print $2}'`

        # if nonstop_aix is not found then exit
        if [[ "$NONSTOP_PID1" == "" && "$NONSTOP_PID2" == "" ]]; then
        break
        fi

done
   ------------------

5. startsrc -s cas_agent


블로그 이미지

Melting

,