- 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
'Systems Director' 카테고리의 다른 글
Director Server Task log 정리 (0) | 2012.06.22 |
---|---|
mirror 되거나 clone 된 이미지의 OS에 대해 discover를 할 경우... (0) | 2012.06.22 |
smcli 로 시스템 정보 조회(CPU, 전력량...) (0) | 2012.06.21 |
NIM서버용 Director SubAgent 설치 (0) | 2012.06.21 |
AIX 7.1 && Director 6.3 설치 스크립트... (0) | 2012.06.21 |