Previous Topic: Create Batch File to Stop CA ControlMinder ServicesNext Topic: Create Batch File to Check Status of CA ControlMinder Services


Create Batch File to Start CA ControlMinder Services

Create a batch file to start all CA ControlMinder Services on the Primary and the Secondary Enterprise Management Servers. The following example starts the Message Queue, Java Connector Service (JCS), and the 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