客户端通过 MQ 服务器发送接收消息

MQ Server : was1 10.13.106.36

MQ Client : ihs  10.13.106.38



1、设置QM Server:

新建队列管理器

1
2
crtmqm QM1
strmqm QM1

新建队列、通道

1
2
3
4
runmqsc QM1
define qlocal(Q1)
define channel(CLIENT.QM1) chltype(SVRCONN) trptype(TCP) 
alter qmgr chlauth(DISABLED)

启动监听器

1
2
alter listener(system.default.listener.tcp) trptype(tcp) port(1415)
start listener(system.default.listener.tcp)


2、设置MQ Client:

1
2
vim .bash_profile
MQSERVER=CLIENT.QM1/TCP/'was1(1415)';export MQSERVER


3、在Client测试:

发送消息

1
2
3
4
5
-bash-4.1$ amqsputc Q1 QM1
Sample AMQSPUT0 start
hello
target queue is Q1
Sample AMQSPUT0 end


接受消息

1
2
3
4
5
-bash-4.1$ amqsgetc Q1 QM1
Sample AMQSGET0 start
message <hello>
no more messages
Sample AMQSGET0 end






     本文转自1321385590 51CTO博客,原文链接:http://blog.51cto.com/linux10000/1769296,如需转载请自行联系原作者



上一篇:idea提交代码到gitee报错:The requested URL returned error: 403


下一篇:1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL