分類: ibm mq
2013-01-18 16:04
260人閱讀收藏
舉報1.使用mq安裝使用者登入linux,例如:su - mqm
2.runmqsc qm1
#queue 代表要查詢的佇列
3.display conn(*) where(objname eq queue)
查詢的結果:(說明此刻有兩個機器連線佇列queue)
amq8276: display connection details.
conn(7ce89c50191e0020)
extconn(414d5143516d31202020202020202020)
type(conn)
amq8276: display connection details.
conn(7ce89c5003bc0020)
extconn(414d5143516d31202020202020202020)
type(conn)
4.分別查詢不同的機器
display conn(7ce89c50191e0020) all
查詢的結果:(conname(192.168.x.1) 在連線)
amq8276: display connection details.
conn(7ce89c50191e0020)
extconn(414d5143516d31202020202020202020)
type(conn)
pid(17449) tid(54)
astate(started) channel(chan_server_con)
conname(192.168.x.1)
connopts(mqcno_handle_share_block,mqcno_shared_binding)
userid(mqm) uowlog( )
uowstda(2012-11-09) uowstti(19.29.53)
uowlogda( ) uowlogti( )
urtype(qmgr)
exturid(xa_formatid[00000000] xa_gtrid xa_bqual)
qmurid(0.130) uowstate(active)
display conn(7ce89c5003bc0020) all
查詢的結果:(conname(192.168.x.2))
amq8276: display connection details.
conn(7ce89c5003bc0020)
extconn(414d5143516d31202020202020202020)
type(conn)
pid(17449) tid(6313)
astate(started) channel(chan_server_con)
conname(192.168.x.2)
connopts(mqcno_handle_share_block,mqcno_shared_binding)
userid(mqm) uowlog( )
uowstda(2012-11-10) uowstti(04.08.11)
uowlogda( ) uowlogti( )
urtype(qmgr)
exturid(xa_formatid[00000000] xa_gtrid xa_bqual)
qmurid(0.12671)
第四章 佇列
佇列是任務間通訊的主要形式。它們可用於在任務之間以及中斷和任務之間傳送訊息。在大多數情況下,它們被用作執行緒安全fifo 先進先出 緩衝區。uint8 t fifomessage 10 hello queuehandle t tmpqueuehandle 第一步 建立佇列 tmpqueuehandl...
第四章 棧與佇列
adt abstract data type 棧 stack data 同線性表,元素具有相同的型別,相鄰元素具有前驅和後繼關係。operation initstack s 初始化操作,建立乙個空棧s。destroy s 若棧存在,則銷毀它 clearstack s 將棧清空 stackempty ...
機器學習 第四章KNN演算法
k近鄰演算法是機器學習中最簡單的分類演算法之一,這篇文章主要講解knn演算法的在scikit learn中的使用,其中不僅僅包括了演算法本身,還有測試訓練集的分離,交叉驗證的使用,資料標準化等。首先用乙個簡單的例子引入knn演算法 import numpy as np import matplotl...