With ControlMinder Enterprise Management under window and linux environment, TIBCO is installed.
How to query, stop, start TIBCO queue ("CA ControlMinder Message Queue") on window and linux environment ?
Under Windows "Command Prompt":
. TIBCO queue status:
sc query acrptmq
SERVICE_NAME: acrptmq
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 4 RUNNING
(STOPPABLE, PAUSABLE, ACCEPTS_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
.To stop TIBCO queue:
sc stop acrptmq
SERVICE_NAME: acrptmq
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 3 STOP_PENDING
(STOPPABLE, PAUSABLE, ACCEPTS_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x1
WAIT_HINT : 0x1388
.To start TIBCO queue:
sc start acrptmq
SERVICE_NAME: acrptmq
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 2 START_PENDING
(NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x7d0
PID : 3064
FLAGS :
Under linux SSH session:
.TIBCO queue status:
# /etc/init.d/ca-acrptmq status
CA ControlMinder Message Queue is running
.To stop TIBCO queue:
# /etc/init.d/ca-acrptmq stop
Shutting down CA ControlMinder Message Queue...
.To start TIBCO queue:
# /etc/init.d/ca-acrptmq start
Starting CA ControlMinder Message Queue...