이전 항목: 기본 URL 수정다음 항목: CA ControlMinder 서비스를 시작하는 배치 파일 작성


CA ControlMinder 서비스를 중지하는 배치 파일 작성

주 및 보조 엔터프라이즈 관리 서버에서 모든 CA ControlMinder 서비스를 중지하는 배치 파일을 만드십시오. 다음 예는 메시지 큐, JCS(Java Connector Service), JBoss를 중지합니다.

#!/bin/sh
#To Stop the AccessControl Services
/opt/CA/AccessControlServer/APMS/AccessControl/bin/secons -sk

#To Stop the CA ControlMinder Message Queue
#/etc/init.d/ca-acrptmq stop
su - tibco -c "/etc/init.d/ca-acrptmq stop"

#To Stop the Web Services
/opt/CA/AccessControlServer/APMS/AccessControl/bin/secons -S "eacws"

#To Stop Java Connector Service JCS
/etc/init.d/im_jcs stop

#To Stop JBOSS
cd /opt/jboss-4.2.3.GA/bin/
/opt/jboss-4.2.3.GA/bin/shutdown.sh -S &
sleep 60