我无法连接到 IBM MQ 的 QM ERROR 2035 MQRC_NOT_AUTHORIZED
I can't connect to QM of IBM MQ ERROR 2035 MQRC_NOT_AUTHORIZED
我有 2 个 QM,第一个用于测试,第二个用于实际工作,它们具有相同的属性,以及可以连接到这些 QM 的客户端。
问题是我无法连接到第二个。
它显示错误:
2035 MQRC_NOT_AUTHORIZED
问题的大部分答案是更改QM服务器端的一些设置,但是如果我没有访问QM服务器的权限,我该怎么办?
我的意思是我只有一个客户。我还知道 QM 与具有相同凭据的另一个客户合作良好。
无法访问服务器端,我不知道如何解决这个问题。
我在 Linux Ubuntu 上刚刚安装的 IBM MQ 服务器上遇到了同样的问题(只有一个本地队列管理器)。
这不是生产。解决问题的方法之一是禁用安全性(在生产中不这样做)。
ALTER QMGR CHLAUTH(DISABLED)
这是你在服务器上运行的命令。
请阅读queue manager RC 2035 MQRC_NOT_AUTHORIZED
更具体地说,段落 2.c.
Disable the Channel Authentication Records feature
ALTER QMGR CHLAUTH(DISABLED)
WARNING: Disabling this new feature is not recommended for MQ 7.1
production queue managers due to security implications. Note that
disabling CHLAUTH results in a policy that accepts administrative
connections by default. The administrative effort to lock down
administrative access with CHLAUTH(DISABLED) is much greater than to
do so with CHLAUTH(ENABLED). It is therefore recommended to leave
CHLAUTH(ENABLED) and use the other security features of WebSphere MQ
V7.1 to authenticate administrator connections.
我有 2 个 QM,第一个用于测试,第二个用于实际工作,它们具有相同的属性,以及可以连接到这些 QM 的客户端。 问题是我无法连接到第二个。 它显示错误:
2035 MQRC_NOT_AUTHORIZED
问题的大部分答案是更改QM服务器端的一些设置,但是如果我没有访问QM服务器的权限,我该怎么办?
我的意思是我只有一个客户。我还知道 QM 与具有相同凭据的另一个客户合作良好。
无法访问服务器端,我不知道如何解决这个问题。
我在 Linux Ubuntu 上刚刚安装的 IBM MQ 服务器上遇到了同样的问题(只有一个本地队列管理器)。 这不是生产。解决问题的方法之一是禁用安全性(在生产中不这样做)。
ALTER QMGR CHLAUTH(DISABLED)
这是你在服务器上运行的命令。
请阅读queue manager RC 2035 MQRC_NOT_AUTHORIZED 更具体地说,段落 2.c.
Disable the Channel Authentication Records feature
ALTER QMGR CHLAUTH(DISABLED)
WARNING: Disabling this new feature is not recommended for MQ 7.1 production queue managers due to security implications. Note that disabling CHLAUTH results in a policy that accepts administrative connections by default. The administrative effort to lock down administrative access with CHLAUTH(DISABLED) is much greater than to do so with CHLAUTH(ENABLED). It is therefore recommended to leave CHLAUTH(ENABLED) and use the other security features of WebSphere MQ V7.1 to authenticate administrator connections.