4

以下是 QMGR 日志文件中有关 WMQ 通道问题的相关部分:

-------------------------------------------------------------------------------
2012-7-23 10:35:25 - Process(340.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9206:  Error sending data to host 86.0.223.5(1602) 。

EXPLANATION:
An error occurred sending data over TCP/IP to 86.0.223.5(1602). This may be due to
a communications failure.
ACTION:
The return code from the TCP/IP(send) call was 10054 X('2746'). Record these
values and tell your systems administrator.  
----- amqccita.c : 2612 -------------------------------------------------------
2012-7-23 10:35:25 - Process(340.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9999: Channel program ended abnormally. 

EXPLANATION: 
Channel program 'CZWJNS.CZWJCZ' ended abnormally. 
ACTION: 
Look at previous error messages for channel program 'CZWJNS.CZWJCZ' in the 
error files to determine the cause of the failure.  
----- amqrccca.c : 834 --------------------------------------------------------
2012-7-23 10:35:35 - Process(3616.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9002: Channel “CZWJNS.CZWJCZ' is starting。

EXPLANATION:
Channel “CZWJNS.CZWJCZ' is starting。
ACTION:
None。 
-------------------------------------------------------------------------------
2012-7-23 10:40:35 - Process(3616.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9206:  Error sending data to host 86.0.223.5(1602) 。

EXPLANATION:
An error occurred sending data over TCP/IP to 86.0.223.5(1602). This may be due to
a communications failure.
ACTION:
The return code from the TCP/IP(send) call was 10054 X('2746'). Record these
values and tell your systems administrator.   
----- amqccita.c : 2612 -------------------------------------------------------
2012-7-23 10:40:35 - Process(3616.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9999: Channel program ended abnormally. 

EXPLANATION: 
Channel program 'CZWJNS.CZWJCZ' ended abnormally. 
ACTION: 
Look at previous error messages for channel program 'CZWJNS.CZWJCZ' in the 
error files to determine the cause of the failure.  
----- amqrccca.c : 834 --------------------------------------------------------
2012-7-23 10:40:45 - Process(4848.1) User(MUSR_MQADMIN) Program(runmqchl.exe)
AMQ9002: Channel “CZWJNS.CZWJCZ' is starting。

EXPLANATION:
Channel “CZWJNS.CZWJCZ' is starting。
ACTION:
None。
-------------------------------------------------------------------------------

现在的情况是目标通道(CZWJNS.CZWJCZ)终于可以运行了,但要经过几次重试。它经常发生。所有消息都可以成功传递到远程 QMGR 主机中的目标队列。但是,由于多次重试尝试,它们总是被延迟。

我在互联网上搜索了返回码10054,这意味着连接已被对等方重置。

我的 WMQ 版本是 Windows 2003 上的 6.0.10。

4

1 回答 1

4

“对等节点重置连接”意味着该节点和另一个节点之间的某些东西关闭了连接。原因可能包括不可靠/嘈杂的网络、防火墙超时、拒绝连接的通道出口或许多其他原因。

在这些情况下,诊断的关键是缩小病因。这需要查看 QMgr(或客户端和 QMgr)上同一事件的错误日志。在通道出口的情况下,查看两侧的通道定义可以揭示是否存在这样的出口,但如果是,那么您还需要查看出口的配置和日志。

如果问题出在网络中,来自两个 QMgrs 的错误日志将显示类似的错误。但是,如果一个 QMgr 有意关闭了连接,那么您将在其日志文件中看到这一点。

于 2012-07-23T12:59:13.640 回答