May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

how to check JMS queue depth using jacl

Case 1: check depth of 1 particular queue

set qpoint “WebSphere:*,type=SIBQueuePoint,name=MyQueuePointName” set queues [$AdminControl queryNames $qpoint] foreach q $queues { set identifier [$AdminControl getAttribute $q identifier] set size [$AdminControl getAttribute $q depth] puts “$identifier size: $size messages” puts [$AdminControl getAttributes $q] }

Case 2: check all the queue points

set qpoint “WebSphere:*,type=SIBQueuePoint” set queues [$AdminControl […]

websphere mq: create queue manager

Create queue manager

crtmqm -c “QMANAGER DESCRIPTION” -q QMANAGER_NAME.QUEUE.MANAGER

Create queue manager and default queue

crtmqm -q -d DEFAULT.QUEUE -u SYSTEM.DEAD.LETTER.QUEUE -c “QMANAGER DESCRIPTION” QMANAGER_NAME.QUEUE.MANAGER

websphere mq: basic administration commands

launch runmqsc

display queue manager(s) display qmmgr(*)

display queue(s) display queue(*)

display channel(s) display channel(*)

display listener(s) display listener(*)

check queue status display qstatus(*)

clear queue clear qlocal(queue_name)

display connections display conn(*)

dspmq runmqsc dis chs (channel) start chl (channel) stop chl (channel) reset chl (channel) start chl (channel) end

Start Q Manager ————— strmqm […]

MQ admin Commands

MQ administration Commands

dspmqver :- to display MQ series version dspmq :- to view all queue managers of MQ series. crtmqm :- to create a queue manager strmqm :- to start queue manager runmqsc :- to enter in to particular queue manager endmqm :- to end a queue manager dltmqm :- to delete […]