mq操作命令

合集下载

mq的使用方法

mq的使用方法

mq的使用方法【原创实用版2篇】目录(篇1)1.MQ 的概念与作用2.MQ 的基本使用方法3.MQ 的高级使用方法4.MQ 的实际应用案例正文(篇1)一、MQ 的概念与作用消息队列(Message Queue,简称 MQ)是一种应用程序之间的通信机制,通过将消息发送到队列中,接收方可以从队列中获取消息并进行处理。

MQ 的主要作用在于解耦、异步处理、削峰填谷等。

二、MQ 的基本使用方法1.创建队列:使用`mqsend`命令创建一个队列,例如:`mqsend -o <选项> -I <IP 地址> -p <端口号> -m <队列名称>`。

2.发送消息:使用`mqsend`命令发送消息到队列,例如:`mqsend -o <选项> -I <IP 地址> -p <端口号> -m <队列名称> <消息内容>`。

3.接收消息:使用`mqrecv`命令从队列中接收消息,例如:`mqrecv -o <选项> -I <IP 地址> -p <端口号> -m <队列名称>`。

4.删除队列:使用`mqsend`命令删除一个队列,例如:`mqsend -o <选项> -I <IP 地址> -p <端口号> -m <队列名称> -d`。

三、MQ 的高级使用方法1.消息持久化:通过设置队列属性,使消息在断电或系统崩溃时依然不会丢失。

2.消息过滤:根据消息内容或特定条件,对消息进行过滤处理。

3.消息分组:将多个消息合并为一条消息进行发送或接收。

4.消息优先级:设置消息的优先级,优先处理高优先级的消息。

四、MQ 的实际应用案例1.异步处理:例如,用户在购物网站下单后,订单处理系统将订单信息发送到 MQ,而后台处理系统从 MQ 中获取订单信息进行处理。

mq命令

mq命令
TRIGDPTH(1) TRIGMPRI(0)
QDEPTHHI(80) QDEPTHLO(20)
QDPMAXEV(ENABLED) QDPHIEV(DISABLED)
XMITQ(QT_NT)
创建发送方通道,其传输队列为QT_NT,远程主机地址为10.10.10.2,侦听端口为1414
DEFINE CHANNEL(SDR_NT) CHLTYPE(SDR)+
CONNAME(‘10.10.10.2(1414)’) XMITQ(QT_NT) REPLACE
如果队列是默认队列管理器中的队列,可以不带其队列管理器的名字
启动通道
runmqchl –c ChlName –m QmgrName
启动侦听
runmqlsr –t TYPE –p PORT –m QMgrName
停止侦听
endmqlsr -m QmgrName
MQSeries命令
8.退出命令行使用 end 命令。

一.MQ基本操作
MQ中有几个很重要的组件:队列管理器(QueueManager)、队列(Queue)和通道(Channel)。其基本的操作方法如下:
创建队列管理器
crtmqm –q QMgrName
-q是指创建缺省的队列管理器
删除队列管理器
远程队列定义
DEFINE QREMOTE(QRNAME) +
RNAME(AAA) RQMNAME(QMGRNAME) +
XMITQ(QTNAME)
定义模型队列
DEFINE QMODEL(QNAME) DEFTYPE(TEMPDYN)
定义本地传输队列

MQ常用命令

MQ常用命令

QUEUE(QMB)
TYPE(QLOCAL)
ACCTQ(QMGR)
ALTDATE(2009-02-06)
ALTTIME(11.41.44)
BOQNAME( )
BOTHRESH(0) CLUSTER( )
CLUSNL( ) CLWLPRTY(0)
CLWLRANK(0)
CLWLUSEQ(QMGR)
CRDATE(2008-12-05)
1.查看所有队列管理器 dspmq
查看所有的通道
dis chl(name)/dis chl(*)/dis chl(*) all/dis channel(name)
查看通道状态
dis chs(name)/dis chs(*)/dis chs(*) all
查看队列
display queue(name)
查看队列管理器信息(包括 CCSID 等信息) dis qmgr
种方法。 需要注意的时,当 DEPTH 属性值为0的时候,实际上就形成了同步通信。另外,当采用 Depth 触发时,产生触发消息以后,队列将被修改为非触发方式,如果需要再次触发,需要重新设 置成允许触发。
一般而言,在实际应用中,如果通道设置成触发方式,触发类型往往设置成为 FIRST 和
DEPTH。
6.修改 ccsid
alter qmgr ccsid(“XXX”)
一、MQ 的启动与停止
用 root 用户启/停需要 root 用户包含在 mqm 组中。
1、MQ 的启动 strmqm QMgrName 如果启动默认队列管理器,strmqm 后可以忽略队列管理器名称。 在意外情况停止队列管理器后,启动可能会失败,此时可以检查上次停止后是否有 IPC 资 源未释放,若有请予以删除,删除方法参考下面的“C.清理所有残留在系统内部的信号灯和 共享内存”。

mq命令大全

mq命令大全

mq命令大全mq命令大全最近在配置MQ,记下了一些常用的MQ命令,如下:创建队列管理器crtmqm –q QMgrName-q是指创建缺省的队列管理器删除队列管理器dltmqm QmgrName启动队列管理器strmqm QmgrName如果是启动默认的队列管理器,可以不带其名字停止队列管理器endmqm QmgrName 受控停止endmqm –i QmgrName 立即停止endmqm –p QmgrName 强制停止显示队列管理器dspmq –m QmgrName运行MQ命令runmqsc QmgrName如果是默认队列管理器,可以不带其名字往队列中放消息amqsput QName QmgrName如果队列是默认队列管理器中的队列,可以不带其队列管理器的名字从队列中取出消息amqsget QName QmgrName如果队列是默认队列管理器中的队列,可以不带其队列管理器的名字启动通道runmqchl –c ChlName –m QmgrName启动侦听runmqlsr –t TYPE –p PORT –m QMgrName停止侦听endmqlsr -m QmgrName下面是在MQ环境中可以执行的MQ命令(即在runmqsc环境下可以敲的命令) 定义持久信队列DEFINE QLOCAL(QNAME)DEFPSIST(YES)REPLACE设定队列管理器的持久信队列ALTER QMGR DEADQ(QNAME)定义本地队列DEFINE QL(QNAME)REPLACE定义别名队列DEFINE QALIAS(QALIASNAME) TARGQ(QNAME)远程队列定义DEFINE QREMOTE(QRNAME)+RNAME(AAA)RQMNAME(QMGRNAME)+XMITQ(QTNAME)定义模型队列DEFINE QMODEL(QNAME)DEFTYPE(TEMPDYN)定义本地传输队列DEFINE QLOCAL(QTNAME) USAGE(XMITQ) DEFPSIST(YES) + INITQ(SYSTEM.CHANNEL.INITQ)+PROCESS(PROCESSNAME) REPLACE创建进程定义DEFINE PROCESS(PRONAME)+DESCR(‘STRING’)+APPLTYPE(WINDOWSNT)+APPLICID(’runmqchl -c SDR_TEST -m QM_ TEST’)其中APPLTYPE的值可以是:CICS、UNIX、WINDOWS、WINDOWSNT等创建发送方通道DEFINE CHANNEL(SDRNAME)CHLTYPE(SDR)+CONNAME(‘100.100.100.215(1418)’)XMITQ(QTNAME)REPLACE其中CHLTYPE可以是:SDR、SVR、RCVR、RQSTR、CLNTCONN、SVRCONN、CLUSSDR和CLUSRCVR。

IBMMQ常用命令

IBMMQ常用命令

IBMMQ常用命令IBM MQ是一款广泛应用于企业级应用程序开发和数据传输的消息队列软件。

该软件具有出色的可扩展性和稳定性,可满足不同规模和需求的企业应用场景。

为了更好地管理和操作IBM MQ,下面将介绍IBMMQ常用命令。

1. crtmqm命令crtmqm命令是创建IBM MQ队列管理器的命令。

例如,要创建一个名为QMGR1的队列管理器,我们可以使用以下命令:crtmqm QMGR12. strmqm命令strmqm命令是启动IBM MQ队列管理器的命令。

例如,要启动名为QMGR1的队列管理器,我们可以使用以下命令:strmqm QMGR13. endmqm命令endmqm命令是停止IBM MQ队列管理器的命令。

例如,要停止名为QMGR1的队列管理器,我们可以使用以下命令:endmqm QMGR14. runmqsc命令runmqsc命令是启动IBM MQ命令行管理工具的命令。

我们可以在命令行模式下使用该命令来执行各种MQ管理任务。

例如,要启动runmqsc,我们可以使用以下命令:runmqsc QMGR15. crtmqobj命令crtmqobj命令是创建IBM MQ队列和通道的命令。

例如,要创建一个名为MYQUEUE的本地队列,我们可以使用以下命令:crtmqobj QMGR1 QLOCAL(MYQUEUE)6. dltmqobj命令dltmqobj命令是删除IBM MQ队列和通道的命令。

例如,要删除名为MYQUEUE的本地队列,我们可以使用以下命令:dltmqobj QMGR1 QLOCAL(MYQUEUE)7. display命令display命令是显示IBM MQ队列管理器、队列和其他对象的信息的命令。

例如,要显示名为QMGR1的队列管理器的配置信息,我们可以使用以下命令:display qmgr QMGR18. Inquire命令Inquire命令是查询IBM MQ队列管理器、队列和其他对象的信息的命令。

MQ常用命令

MQ常用命令

查看死信队列:dis qlocal(DEADQ)
查看本地队列:dis qlocal(*)
查看本地队列深度: display ql(xxx) curdepth
查看远程队列深度:display qr(xxx) curdepth
查看ccsid: display qmgr all
更改监听: alter listener(xxxx) TRPTYPE(TCP) PORT(1417) CONTROL(QMGR)
停止监听: end LISTENER(xxxx)
查看通道当前序列号: dis chs(xxxx) curseqno
查看通道所有状态: dis chs(xxxxx) all
查看通道: dis chl(xxx)
查看所有通道 dis chl(*) 或 dis chs(*或 dis lsstatu(listentName)
查看本地队列:dis qlocal(xxxxx) 查看其中的 CURDEPTH(0),若其>0,则说明本地队列堵塞
显示所有远程队列: display qremote(*)
显示所有通道: display channel(*)
ping通道:ping CHANNEL(xxxx)
清空队列内容:clear Qlocal(Qname)(需运行 runmqsc)
删除队列:delete qlocal(Qname)
以下为MQ常用命令:
查看发送通道:display channel(xxx)
查看队列管理器: dspmq
停止队列管理器:endmqm QMEMBFE
删除队列管理器:dltmqm QMEMBFE
重置发送通道:reset channel(xxxx)

mq的使用方法

mq的使用方法

mq的使用方法(原创版4篇)目录(篇1)1.MQ 的概念与作用2.MQ 的基本使用方法3.MQ 的高级使用方法4.MQ 的使用注意事项正文(篇1)一、MQ 的概念与作用消息队列(Message Queue,简称 MQ)是一种应用程序之间通过消息进行通信的技术。

它起到了解耦、削峰填谷、保证消息顺序等作用,广泛应用于企业级应用中。

二、MQ 的基本使用方法1.创建队列:通过命令创建一个队列,如:`创建队列 my_queue`。

2.发送消息:通过命令向队列发送消息,如:`发送消息 my_queue "Hello, MQ!"`。

3.接收消息:通过命令从队列接收消息,如:`接收消息 my_queue`。

三、MQ 的高级使用方法1.消息过滤:可以使用`#`符号进行消息过滤,如:`接收消息my_queue # "关键字"`。

2.消息持久化:可以通过设置队列属性实现消息持久化,以防止数据丢失。

3.消息重试:可以使用`retry`命令实现消息的重试发送。

四、MQ 的使用注意事项1.合理设置队列参数,如队列长度、消息大小等,以避免队列过满或消息丢失。

2.注意消息顺序,确保接收消息的顺序与发送消息的顺序一致。

3.确保消息发送与接收的及时性,避免出现消息堆积或接收不及时的情况。

通过以上方法,您可以熟练地使用消息队列(MQ)进行应用程序间的通信。

目录(篇2)1.MQ 的概念与作用2.MQ 的基本组成3.MQ 的使用方法4.MQ 的优缺点5.总结正文(篇2)一、MQ 的概念与作用消息队列(Message Queue,简称 MQ)是一种应用程序之间通过消息传递进行通信的技术。

它起到了解耦、异步处理、削峰填谷等作用,使得系统在面对高并发、高负载的情况下仍能稳定运行。

二、MQ 的基本组成一个典型的消息队列系统包括以下几个部分:1.生产者(Producer):负责向队列中发送消息的应用程序。

2.消费者(Consumer):负责从队列中接收并处理消息的应用程序。

mq常用命令

mq常用命令

mq常用命令一、连接管理命令1. mqsc:进入MQSC模式,用于管理MQ对象。

2. runmqsc:运行MQSC脚本。

3. strmqm:启动MQ队列管理器。

4. endmqm:停止MQ队列管理器。

5. dspmq:显示当前系统中的MQ队列管理器。

6. crtmqm:创建新的MQ队列管理器。

7. dltmqm:删除指定的MQ队列管理器。

二、队列管理命令1. crtlq:创建本地队列。

2. dltmq:删除本地队列。

3. dmpmqmsg:显示队列中的消息。

4. amqmsrvn:启动MQ服务。

5. amqmdnet:启动MQ分布式网络服务。

6. amqmdgin:启动MQ远程订阅服务。

三、消息处理命令1. amqsput:向队列发送消息。

2. amqsget:从队列接收消息。

3. amqssub:订阅消息。

4. amqssubc:取消订阅消息。

5. amqsgrep:根据消息内容过滤消息。

四、通道管理命令1. crtmqchs:创建MQ通道。

2. dltmqchs:删除MQ通道。

3. strmqmchs:启动MQ通道。

4. endmqmchs:停止MQ通道。

5. dspmqchs:显示MQ通道。

6. amqssslc:启用SSL加密通道。

五、安全管理命令1. setmqaut:设置队列对象的授权。

2. dspmqaut:显示队列对象的授权。

3. setmqaut:设置队列管理器的授权。

4. dspmqaut:显示队列管理器的授权。

5. setmqaut:设置通道的授权。

6. dspmqaut:显示通道的授权。

六、日志管理命令1. amqsbcg:启用MQ日志。

2. amqsbcgc:停用MQ日志。

3. amqsbcgd:调整MQ日志大小。

4. dspmqlog:显示MQ日志。

七、监控命令1. dspmqrte:显示MQ路由器状态。

2. dspmqspl:显示MQ任务状态。

3. dspmqsrv:显示MQ服务状态。

IBM MQ常用命令

IBM MQ常用命令
再有看看远程队列中的属性是不是配置错误,如rname,rqname,xmitq等属性。
也有可能是发送接收队列的消息序列号不一致。如果不一致做一下reset操作。
还有可能是上一批消息没有提交。可以做一个resolve操作。
QR1 -> QT1 -> QL2
消息被放入到远程队列中,远程队列通过传输队列传输,最后传输到QM2中的本地队列。
出现问题,我们怎么办?
1 不能放入消息。
一般这种情况应该大部分是远程队列中的传输队列那个参数配置的不正确。
还有可能是队列的允许放入这个参数设置成了禁止。基本上就这两种情况。
更改属性
ALTER QMGR DESCR(‘NEW DESCRIPTION’)
ALTER QLOCAL(QNAME) PUT(DISABLED)
ALTER QALIAS(QNAME) TARGQ(TARGQNAME)
删除队列
DELETE QLOCAL(QNAME)
DELETE QREMOTE(QRNAME)
INITQ(SYSTEM.CHANNEL.INITQ)+
PROCESS(PROCESSNAME) REPLACE
创建进程定义
DEFINE PROCESS(PRONAME) +
DESCR(‘STRING’)+
APPLTYPE(WINDOWSNT)+
APPLICID(’ runmqchl -c SDR_TEST -m QM_ TEST’)
常用命令
创建队列管理器
crtmqm –q QMgrName
-q是指创建缺省的队列管理器
删除队列管理器

MQ 常用命令

MQ 常用命令

1. 队列管理器1.1. 创建队列管理器命令:crtmqm <qmgrName>示例:1.2. 启动队列管理器命令:strmqm <qmgrName>停止队列管理器命令:endmqm -c|-w|-i|-p <qmgrName>参数说明:-c 受控关闭(或停顿关闭)。

这是缺省值。

队列管理器停止,但仅当所有应用程序已断开连接后才停止。

当前正在处理的任何MQI 调用已完成。

立即将控制权返回给您,并且不通知您队列管理器是何时停止的。

对通过服务器连接通道连接的任何客户机应用程序的影响等效于以QUIESCE 方式发出的STOP CHANNEL 命令。

-w 等待关闭。

此类型的关闭等效于受控关闭(除了仅当队列管理器已停止后才将控制权返回给您之外)。

当执行关闭时,您将接收到消息:等待队列管理器qmName 结束。

对通过服务器连接通道连接的任何客户机应用程序的影响等效于以QUIESCE 方式发出的STOP CHANNEL 命令。

-i 立即关闭。

队列管理器在完成所有当前正在处理的MQI 调用后停止。

任何在该命令发出后发出的MQI 请求都将失败。

当队列管理器再次启动时,任何未完成的工作单元将回滚。

队列管理器结束后返回控制权。

对通过服务器连接通道连接的任何客户机应用程序的影响等效于以FORCE 方式发出的STOP CHANNEL 命令。

-p 抢先关闭。

仅在意外情况下使用此类型的关闭。

例如,当队列管理器在常规endmqm 命令下未停止。

队列管理器可以停止而不等待应用程序断开连接或MQI 调用完成。

这可能会产生WebSphere MQ 应用程序的不可预测的结果。

关闭方式设置为立即关闭。

如果队列管理器稍后未停止,关闭方式将升级,且终止所有剩余的的队列管理器进程。

对通过服务器连接通道连接的任何客户机应用程序的影响等效于以TERMINATE 方式发出的STOP CHANNEL 命令。

1.3. 删除队列管理器命令:dltmqm1.4. 显示队列管理器启动状态命令:dspmq2. 管理本地MQ对象使用MQSC 命令执行本地管理任务使用MQSC命令执行定义或修改队列、通道等操作。

mq操作

mq操作
启动命令
runmqsc
显示队列信息
dis ql(14_1)
显示队列状态
dis chs(*)
dis chs(DOWN00_14) -- 指定只显示节点14的信息
dis chs(UP51_00)
显示队列的内容
tjficb@mqm/usr/mqm/samp/bin>./amqsbcg 00_1 QM00
CRDATE(2009-03-12) CRTIME(11.40.34)
CURDEPTH(0) DEFBIND(OPEN)
DEis ql(00_14)
dis chs(DOWN00_14)
--重置通道
stop chl(UP51_00)
8 : stop chl(UP51_00)
AMQ8019: Stop WebSphere MQ channel accepted.
reset chl(UP51_00)
CHLTYPE(RCVR) STATUS(RUNNING)
RQMNAME(QM51)
---------------
## 看当前队列深度 CURDEPTH
13 : dis QUEUE(00_1);
AMQ8409: Display Queue details.
TRIGMPRI(0) TRIGTYPE(FIRST)
USAGE(NORMAL)
9 : reset chl(UP51_00)
AMQ8023: WebSphere MQ channel reset.
start chl(UP51_00)
10 : start chl(UP51_00)
AMQ8018: Start WebSphere MQ channel accepted.

mq命令()

mq命令()

mq命令()take xzvftake cvflsof - p [进程id] 可以看到某id的打开文件状况.进程id可能用ps - ef | arrested查看进程打开文件数 lsof - p 10893 | wc - l数据库1) shutdown; / / 停止数据库强制关闭 shutdown immediate shutdown abort2) su / oracle / 切换为oracle用户3) sqlplus 用户名 / 密码 as sysdba;4) startup; / / 启动数据库5) select open _ fashion from v $database; / / 查看启动结果6) treatment; / / 退出sqlplus7) 退出orcl输入: lsnrctl start; / / 启侦听8) 退出orcl输入: lsnrctl status; / / 查看侦听状态9) 测字符集 select userenv ('language') from dual;aix下查看cputopaz< mq _ home > \ > dspmq binqmname (was _ washyf _ server1) status (正在运行)< mq _ home > \ > bin runmqsc was _ washyf _ server1the ql (*)descr (websphere application server queue - do not delete) process () boqname (system.dead.letter.queue)initq () trigdata ()cluster () clusnl ()queue (wq _ testjmsqueue1) crdate (2003 - 10 - 23)crtime (17.11.39) altdate (2003 - 10 - 23)alttime (17.11.39), goat (enabled)put (enabled) defprty (0)defpsist (no) maxdepth (640000)maxmsgl (4194304) bothresh (5)share defsopt (shared)hardenbo msgdlvsq (dai)retintvl (999999999) usage (normal)notrigger trigtype (first)trigdpth (1) trigmpri (0)qdepthhi (80) qdepthlo (20)qdpmaxev (enabled) qdphiev (disabled)qdploev (disabled) qsvcint (999999999)qsvciev (none) distl (no)deftype (predefined) type (qlocal)scope (qmgr) defbind (open)ipprocs (1) opprocs (0)curdepth (0)请注意curdepth (0) 这里的数字就是当前您队列里面的消息数, ipprocs (1) 表示有应用正在监控这个队列6.如果, 有应用正在监控这个队列把使用这个队列的应用停止.7.在命令行窗口下输入:clear ql ("wq _ testjmsqueue1")8: clear ql ("wq _ testjmsqueue1")amq8022: websphere mq 队列已清除.8.退出命令行使用 end 命令.一.mq基本操作mq中有几个很重要的组件: 队列管理器 (queuemanager) 、队列(queue) 和通道 (channel).The basic operation method is as follows:Create queue managerCrtmqm – Q QMgrName-q refers to the creation of a default queue managerDelete queue managerDltmqm QmgrNameStart queue managerStrmqm QmgrNameIf the queue manager is started by default, can not take its nameStop queue managerEndmqm QmgrName controlled stopEndmqm – I QmgrName stops immediatelyEndmqm – P QmgrName forced to stopDisplay queue managerDspmq – m QmgrNameRun MQSeries commandRunmqsc QmgrNameIf it is the default queue manager, can not take its nameSend messages to the queueAmqsput QName QmgrNameIf the queue is a queue in the default queue manager, the name of the queue manager can not be takenTake messages from the queueAmqsget QName QmgrNameIf the queue is a queue in the default queue manager, the name of the queue manager can not be takenStart channelRunmqchl – C ChlName – m QmgrNameStart listeningRunmqlsr – t TYPE – P PORT – m QMgrNameStop listeningEndmqlsr -m QmgrNameMQSeries commandThe definition of the dead letter queueDEFINE QLOCAL (QNAME) DEFPSIST (YES) REPLACESet the queue manager dead letter queueALTER QMGR DEADQ (QNAME)Defining local queuesDEFINE QL (QNAME) REPLACEDefining alias queuesDEFINE QALIAS (QALIASNAME) TARGQ (QNAME)Remote queue definitionDEFINE QREMOTE (QRNAME) +RNAME (AAA) RQMNAME (QMGRNAME) +XMITQ (QTNAME)Defining model queuesDEFINE QMODEL (QNAME) DEFTYPE (TEMPDYN)Defining local transport queuesDEFINE QLOCAL (QTNAME) USAGE (XMITQ) + DEFPSIST (YES) INITQ (SYSTEM.CHANNEL.INITQ) +PROCESS (PROCESSNAME) REPLACECreate process definitionDEFINE PROCESS (PRONAME) +DESCR ('STRING') +APPLTYPE (WINDOWSNT) +APPLICID ("runmqchl -c SDR_TEST -m QM_ TEST")The APPLTYPE value can be: CICS, UNIX, WINDOWS, WINDOWSNT etc. Create sender channelDEFINE CHANNEL (SDRNAME) + CHLTYPE (SDR)CONNAME ("100.100.100.215 (1418) ') XMITQ (QTNAME) REPLACEAmong them, CHLTYPE can be: SDR, SVR, RCVR, RQSTR, CLNTCONN, SVRCONN, CLUSSDR and CLUSRCVR.Create receiver channelDEFINE CHANNEL (SDR_ TEST) CHLTYPE (RCVR) REPLACECreating a server connection channelDEFINE CHANNEL (SVRCONNNAME) CHLTYPE (SVRCONN) REPLACE Displays all the attributes of the queueDISPLAY QUEUE (QNAME) [ALL]Displays the selected attributes of the queueDISPLAY QUEUE (QNAME) DESCR GET PUTDISPLAY QUEUE (QNAME) MAXDEPTH CURDEPTHDisplays all the attributes of the queue manager DISPLAY QMGR [ALL]Display process definitionDISPLAY PROCESS (PRONAME)change attributesALTER QMGR DESCR ('NEW DESCRIPTION')ALTER QLOCAL (QNAME) PUT (DISABLED)ALTER QALIAS (QNAME) TARGQ (TARGQNAME)Delete queueDELETE QLOCAL (QNAME)DELETE QREMOTE (QRNAME)Clear all messages in the queueCLEAR QLOCAL (QNAME)Two. Configure a remote communication connectionThe above describes the basic command operation of MQ, but only know that these are of no practical significance. The ultimate goal of MQ is to realize remote communication,So here's a specific example of how to implement remote connections. The purpose of this example is to build a pair of MQ servers that can implement message passing, which are based on NT and UNIX platforms respectively.First, build a queue manager on the NT sideCrtmqm – Q QM_NTStart queue managerStrmqm QM_NTRun the MQ console commandRunmqsc QM_NTCreate a dead letter queueDEFINE QL (NT.DEADQ) DEFPSIST (YES) REPLACEChange the property manager queue, set the dead letter queueALTER QMGR DEADQ (NT.DEADQ)Create process definitionDEFINE PROCESS (P_NT) +APPLTYPE (WINDOWSNT) +APPLICID ("runmqchl -c SDR_NT -m QM_NT")Creating a local transport queueDEFINE QL (QT_NT) USAGE (XMITQ) + DEFPSIST (YES)INITQ (SYSTEM.CHANNEL.INITQ) +PROCESS (P_NT) REPLACECreate a remote queue definition that corresponds to the local queue Q_UNIX on the UNIX machine, and the transport queue is QT_NTDEFINE QREMOTE (QR_NT) +RNAME (Q_UNIX) RQMNAME (QM_UNIX) +XMITQ (QT_NT)Create the sender channel, its transport queue is QT_NT, the remote host address is 10.10.10.2, the listening port is 1414DEFINE CHANNEL (SDR_NT) CHLTYPE (SDR) +CONNAME ("10.10.10.2 (1414) ') XMITQ (QT_NT) REPLACECreating a server connection channelDEFINE CHANNEL (S_NT) CHLTYPE (SVRCONN) REPLACECreating queue manager on the UNIX sideCrtmqm – Q QM_UNIXStart queue managerStrmqm QM_UNIXAdd listenerModify the /etc/services file and add a row:MQSeries 1414/tcp #MQSeries channel listenerModify the /etc/inetd.conf file, add a line (start listener)MQSeries stream TCP nowait MQM /usr/lpp/mqm/bin/amqcrsta amqcrsta – m QM_UNIXRun the following commands to make the modifications work Refresh – s inetdRun the MQ console commandRunmqsc QM_UNIXCreate a dead letter queueDEFINE QL (UNIX.DEADQ) DEFPSIST (YES) REPLACEChange the property manager queue, set the dead letter queueALTER QMGR DEADQ (UNIX.DEADQ)Create the channel, the name must be the same as the remote senderDEFINE CHANNEL (SDR_NT) CHLTYPE (RCVR) REPLACECreate local queueDEFINE QL (Q_UNIX) DEFPSIST (YES) REPLACECreating a server connection channelDEFINE CHANNEL (S_UNIX) CHLTYPE (SVRCONN) REPLACEAfter the above operation after completion of remote connection configuration. Next you need to verify that the configuration is correct.Starting the sender channel at the NT sideRunmqchl - C SDR_NT - M QM_NT or start CHL (SDR_NT)Send message from NT end to UNIX endAmqsput QR_NT QM_NTReceive messages at the UNIX end/usr/mqm/samp/bin/amqsget Q_UNIX QM_UNIXIf you receive the message, explain the configuration successfully.In addition, under NT, when the queue manager is set up, the listener is automatically established, and the listener is automatically started when the queue manager is started. Of course, the listener can also be configured manually.Modify the \winnt\system32\drivers\etc\services file, add a line in the file:MQSeries 1414/tcp #MQSeries channel listenerStart listenerRunmqlsr – t TCP – P 1414 – m QM_NTThe above illustrates how to establish a simple one-way transmission network. Messages are transmitted from the NT end to the UNIX end. The establishment of remote connections from the UNIX end to the NT side is similar to the above, and the establishment of two-way transmission network is the same principle.Three.Configuring JNDICan send and receive messages with JMS, often used JNDI. Because of the way that JNDI is more flexible, the program is relatively simple.After installing the MQSeries Client for Java, find the JMSAdmin.config file in the \java\bin directory. The file is mainly used to explain the storage mode and storage address of Context, corresponding to the two parametersINITIAL_CONTEXT_FACTORY and PROVIDER_URL in the file. The contents of the JMSAdmin.config file are typical:#INITIAL_CONTEXT_FACTORY=com.sun.jndi.ldap.LdapCtxFactoryINITIAL_CONTEXT_FACTORY=com.sun.jndi.fscontext.RefFSContext Factory#INITIAL_CONTEXT_FACTORY=InitialConte xtFactory##PROVIDER_URL=ldap://polaris/o=ibm, c=usPROVIDER_URL=file:/d:/temp#PROVIDER_URL=iiop://localhost/#SECURITY_AUTHENTICATION=noneINITIAL_CONTEXT_FACTORY said JMSAdmin Tool service provider. There are currently three supported values.Com.sun.jndi.ldap.LdapCtxFactory is used for LDAP, and if you use it, you must install a LDAP server.Com.sun.jndi.fscontext.RefFSContextFactory is used for file system context, and it only requires users to provide file paths to store context.InitialContextFactory is specifically provided for WebSphere, and it needs to be used with WebSphere's CosNaming resource library.PROVIDER_URL represents the URL of the session's initial context, and the root of all JNDI operations implemented by JMSAdmin tool. It corresponds to INITIAL_CONTEXT_FACTORY one by one.Ldap://hostname/contextname for LDAPFile:[drive:]/pathname for file system contextIiop://hostname[: port]/[? TargetContext=ctx] is used to access the WebSphere CosNaming name spaceFinally, there is another parameter, SECURITY_AUTHENTICATION, to illustrate whether JNDI passes security credentials to the service providers you use. Only when the use of the LDAP service providers that use this parameter. This parameter has threevalues, none (anonymous authentication), simple (simple authentication) and CRAM-MD5 authentication mechanism. If you do not provide a valid value, the default value is none.After confirming the configuration file, you can start the JMSAdmin console in the \java\bin directory. Can in any directory with the following command to start the console:JMSAdmin - CFG MQ_JAVA_INSTALL_PATH\java\bin\JMSAdmin.configThe MQ_JAVA_INSTALL_PATH MQSeries Client for Java installed in the root directory.If it fails to start, carefully check your environment variable is set correctly. According to my personal experience, in addition to adding com.ibm.mq.jar and com.ibm.mqjms.jar to the environment variables, fscontext.jar and providerutil.jar are added to the environment variables.Enter the JMSAdmin console, you can freely define sub context. The context of the operation, the following command:Display CTXDefine CTX (ctxname)Change CTX (ctxname)Change CTX (=up)Change CTX (=init)Delete CTX (ctxname)Of course, the main task here is not to define sub context, but to define the following objects:MQQueueConnectionFactoryMQTopicConnectionFactoryMQQueueMQTopic(there are other objects, such as MQXAQueueConnectionFactory, which are not commonly used, which are not explained here)You can use a lot of managed object verbs to manipulate the directory name in the space.改变、定义、显示、、和移动复制删除,它们的用法都算比较简单,这里只列举一二以作说明。

MQ测试常用命令

MQ测试常用命令

测试1 本地通道测试1、使用mqadmin用户登录2、执行crtmqm -q TEST_QM,建立测试用的消息管理器。

3、执行strmqm TEST_QM,启动测试用的消息管理器。

4、执行runmqsc TEST_QM5、输入define ql(DATA),回车,建立本地队列DATA6、输入end回车至此,本地测试通道搭建完成,下面进行测试。

1、执行amqsput DATA TEST_QM2、随便输入一些内容,一行为一条消息,可输入多条。

3、输入完毕连续按两次回车退出。

4、执行amqsget DATA TEST_QM,看看能否收到刚才输入的消息,如果能收到,证明MQ 本地通道是正常的。

如果收不到,则MQ安装有问题。

测试2 远程通道测试如果测试1通过,继续进行远程通道测试。

1、执行runmqsc TEST_QM2、输入define chl(TO.TEST) chltype(RCVR) trptype(tcp),创建接收方通道。

3、输入end并回车。

4、执行crtmqm TEST_RQM,建立模拟的远程通道。

5、执行strmqm TEST_RQM6、执行runmqsc TEST_RQM7、输入define ql(TEST) usage(xmitq)8、输入define qr(REMOTE.DA TA) rname(DATA) rqmname(TEST_QM) xmitq(TEST)9、输入define chl(TO.TEST) chltype(sdr) conname('127.0.0.1(1111)') xmitq(TEST) trptype(tcp),创建发送方通道。

10、输入end11、执行runmqlsr -t tcp -m TEST_QM -p 1111,启动接收方的监听。

12、新打开一个telnet会话,用mqadmin登录,执行runmqsc TEST_RQM13、输入start chl(TO.TEST)14、输入end至此,模拟的远程测试通道建立完成,以下进行测试。

(转)mq常用命令

(转)mq常用命令

(转)mq常⽤命令(暂时放⼀放)创建队列管理器crtmqm qmgrname删除队列管理器dltmqm [-z] qmgrname启动队列管理器strmqm qmgrname停⽌队列管理器endmqm –i QmgrName ⽴即停⽌endmqm –p QmgrName 强制停⽌显⽰队列管理器dspmq 查看全部队列dspmq -m qmgrname ----显⽰具体的队列管理器启动代理:strmqbrk -m GCP_QM启动监听器runmqlsr -m qmgrname -p port -t tcpexp runmqlsr -m GCP_QM -p 1414 -t tcp &停⽌监听endmqlsr -m qmgrname选择队列管理器runmqsc Qmgrname退出队列管理器end显⽰队列属性DISPLAY QLOCAL (Q)查看全部队列dis q(*)AIX查看系统版本:lslpp -ah mqm.server.rtelinux查看系统版本:rpm -qa |grep mqendmqm QmgrName 受控停⽌endmqm –i QmgrName ⽴即停⽌endmqm –p QmgrName 强制停⽌dis qmgr 查看队列管理器属性dis q(GCP_NOTIFY_Q_RECOL) 显⽰全部属性dis qs(GCP_NOTIFY_Q_RECOL) 显⽰主要属性修改队列属性ALTER QMGR CCSID (1381)定义队列属性DEFINE CHANNEL (C) CHLTYPE (SDR) CONNAME ('127.0.0.1 (1414)') XMITQ (XQ) exp define channel(CH1) chltype(SVRCONN) trptype(TCP) mcauser('mqm')创建本地队列define qlocal(QueueName)修改队列属性alter qlocal(Qname) maxdepth(5)重新创建本地队列,属性重置为缺省define qlocal (Qname) replace删除本地队列delete qlocal(Qname)查看错误原因以mq⽤户登录,查看mq的错误原因:直接 mqrc 2085查看端⼝占⽤情况通过ps -ef |grep mgrps -ef| grep mqm| grep 1418mqm 9204 1 0 May 05 ? 0:02runmqlsr -m GCP_QM -t TCP -p 1417扩⼤队列深度#su – mqm#runmqsc P_DNMS_QMalter QLOCAL(Q_RM_DATA) MAXDEPTH(100000) //增⼤配置队列深度alter QLOCAL(Q_PM_DATA) MAXDEPTH(100000) //增⼤性能队列深度队列授权:setmqaut -m P_DNMS_QM -n Q_REDEF_ALARM -t q -g mqm +all WebSphere MQ 的⼯作原理的核⼼就是存储转发查看队列管理器的运⾏状态:dspmq查看jmsbreak的运⾏状态:dspmqbrk往队列中放消息amqsput QName QmgrName清除队列中的所有消息CLEAR QLOCAL(QNAME)ps:在清除队列中的消息时候,需要先将占⽤队列的进程停掉,然后执⾏上述清除命令。

MQ常用命令

MQ常用命令

常用MQ命令:启动队列管理器strmqm <QMName>立即停止endmqm –i <QMName>必须看到ended,命令正常结束,才能说明MQ队列管理器已经终止dspmq显示结果中QMNAME表示MQ队列管理器的名称,STA TUS表示当前运行状态运行状态有Starting 正在启动Running 正在运行Ending 正在停止Ended normally 已经正常终止Ended immediately 已经立即终止Ended preemtively 已经强制终止Ended unexpectively 异常终止注意:停止系统后必须使用dspmq命令进行状态检查使用MQSC脚本命令管理runmqsc <QMName>常用MQSC脚本命令查看队列管理器信息DISPLAY QMGR查看所有通道状态DISPLAY CHSTATUS(*)检查通道具体状态DISPLAY CHSTATUS(ChannelName) ALL检查通道配置DISPLAY CHANNEL(ChannelName)检查队列配置和深度DIS QLOCAL(QName)该命令的显示结果可以看出队列当前深度启动通道START CHANNEL(ChannelName)停止通道STOP CHANNEL(ChannelName)解决通道中的可疑交易RESOLVE CHANNEL(ChannelName) ACTION ( COMMIT | BACKOUT )复位通道序号RESET CHANNEL(ChannelName)。

rabbitMQ队列使用及常用命令

rabbitMQ队列使用及常用命令

rabbitMQ队列使⽤及常⽤命令⼀、RabbitMQ常⽤命令启动监控管理器:rabbitmq-plugins enable rabbitmq_management关闭监控管理器:rabbitmq-plugins disable rabbitmq_management启动rabbitmq:rabbitmq-service start关闭rabbitmq:rabbitmq-service stop查看所有的队列:rabbitmqctl list_queues清除所有的队列:rabbitmqctl reset关闭应⽤:rabbitmqctl stop_app启动应⽤:rabbitmqctl start_app⽤户和权限设置(后⾯⽤处)添加⽤户:rabbitmqctl add_user username password分配⾓⾊:rabbitmqctl set_user_tags username administrator新增虚拟主机:rabbitmqctl add_vhost vhost_name将新虚拟主机授权给新⽤户:rabbitmqctl set_permissions -p vhost_name username '.*' '.*' '.*'⾓⾊说明none 最⼩权限⾓⾊management 管理员⾓⾊policymaker 决策者monitoring 监控administrator 超级管理员⼆、RabbitMQ使⽤(1)介绍①什么叫消息队列消息(Message)是指在应⽤间传送的数据。

消息可以⾮常简单,⽐如只包含⽂本字符串,也可以更复杂,可能包含嵌⼊对象。

消息队列(Message Queue)是⼀种应⽤间的通信⽅式,消息发送后可以⽴即返回,由消息系统来确保消息的可靠传递。

消息发布者只管把消息发布到 MQ 中⽽不⽤管谁来取,消息使⽤者只管从 MQ 中取消息⽽不管是谁发布的。

相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

1. 启动命令行QMEMBFE是QM名字
runmqsc QMEMBFE (进入MQ的命令行)
显示队列DISPLAY QUEUE(*)
显示通道DISPLAY CHANNEL(*)
显示侦听器DISPLAY LISTENER(*)
SDR发送方通道,RCVR接收方通道
2. 创建MQM
crtmqm -lf 16384 -lp 10 -ls 10 QMEMBFE
3. 启动MQM
strmqm QMEMBFE
3.1删除MQM
Dltmqm QMEMBFE
Start chl(通道名) 启动通道
4. 运行脚本
runmqsc QMEMBFE < mbfemq.sc
5. 确定测试商业银行所对应接入点的通道状态是否为running
#runmqsc QMEMBFE
dis chs(5012900001.GW2900)
dis chs(GW2900.5012900001)
dis chstatus(ChannelName) 查看通道状态
dis chs(5012900001.GW2900)
1 : dis chs(5012900001.GW2900)
AMQ8420: 通道状态未找到。

dis chs(GW2900.5012900001)
2 : dis chs(GW2900.5012900001)
AMQ8417: 显示通道状态细节。

CHANNEL(GW2900.5012900001) CHLTYPE(RCVR)
CONNAME(172.26.190.4) CURRENT
RQMNAME(QME2900) STATUS(RUNNING) SUBSTATE(RECEIVE) XMITQ( )
172.26.190.4 1418
1. 创建队列管理器
crtmqm -q QMA
(-q表示QMA为默认队列管理器)
2. 启动队列管理器
strmqm QMA
(对于默认队列管理器,则为strmqm )
Q 3. 启动管理器平台
runmqsc QMA
4. 定义本地队列
define qlocal(queueA)
若用于队列管理器之间进行通信,这应为define qlocal(queue1) usage(xmitq)
5. 定义远程队列
define qremote(queue.remote) rname(.queue)rqmname(queueB)xmitq(queue1)
(.queue为远程队列管理器queueB中的本地队列)
6. 定义发送端通道
define channel(queueA.queueB)chltype(sdr)conname(192.168.1.90(1414)) xmitq(queueA)trptype(tcp)
7. 定义接受方通道
define channel(queueA.queueB) chltype(rcvr) trptype(tcp)
8. 更改侦听端端口号
alter listener(system.default.listener.tcp)trptype(tcp)port(1415)
9. 启动侦听
start listener(system.default.listener.tcp)
在命令行c:\runmqlsr
10. 列出侦听状态
display lsstatus(*)
11. 测试,向队列中放入消息
amqsput queue_name queue_manager_name
从队列中取出消息
amqsget queue_name queue_manager_name
12. 在服务器方建立用于客户方链接的通道
define channel(channel2) chltype(svrconn) trptype(tcp)mcauser()
13. 在客户机方,使用MQSERVER定义客户机链接通道(如使用了ActiveDirectory服务支持,则可略过本步骤)
SET MQSERVER=CHANNEL1/TCP/192.168.1.90(1414) //Windows
export MQSERVER=’CHANNEL1/TCP/server-hostname(port)’//linux
15. 测试,向队列中放入消息
amqsputc queue_name queue_manager_name
从队列中取出消息
amqsgetc queue_name queue_manager_name
16. 关闭队列管理器
endmqm mqm_name
endmqm -i mqm_name
17. 结束所有侦听进程
endmqlsr -m mqm_name
18. 查看WebSphere MQ版本号
dspmqver
19. 查看已有的MQ管理器
dspmq
20. 启动WebSphere MQ Explorer
strmqcfg
21.查看通道的消息序列
DIS CHS(CHANNEL_NAME) CURSEQNO;。

相关文档
最新文档