이전 항목: CA ControlMinder 서비스를 중지하는 배치 파일 작성다음 항목: CA ControlMinder 서비스의 상태를 확인하는 배치 파일 생성


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

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

#!/bin/sh
#To Start the AccessControl Services
/opt/CA/AccessControlServer/APMS/AccessControl/bin/seload

#To Start the CA ControlMinder Message Queue
#/etc/init.d/ca-acrptmq start
su - tibco -c "/etc/init.d/ca-acrptmq start" &
sleep 10

#To Start Java Connector Service JCS
/etc/init.d/im_jcs start

#To Start JBOSS
cd /opt/jboss-4.2.3.GA/bin/
/opt/jboss-4.2.3.GA/bin/run.sh -b 0.0.0.0 &
sleep 9