我正在尝试为以下任务构建一个小型实用程序:1)连接到 weblogic 管理服务器。2) 添加托管服务器。3) 向节点管理器等注册域。
我在eclipse中开始开发,将weblogic\wlserver103\server\lib的所有jar添加到我的项目buildpath中。(我不知道wlst嵌入模式需要哪些jar)开发环境设置没有任何错误。当我尝试运行连接到管理服务器等简单任务时。抛出异常如下图
Connecting to t3://ksai.domain.simpledevelopers.com:7001 with userid javadev13 ...
The CompatabilityMBeanServer is not initialized properly.
This might happen if the CompatabilityMBeanServer is
disabled via the JMXMBean.
To view the root cause exception use dumpStack()
WLST detected that the RuntimeMBeanServer is not enabled. This
might happen if the RuntimeMBeanServer is disabled via the JMXMBean.
Please ensure that this MBeanServer is enabled. Online WLST cannot
function without this MBeanServer.
Exception in thread "main" Traceback (innermost last):
File "<string>", line 1, in ?
File "<iostream>", line 22, in connect
File "<iostream>", line 618, in raiseWLSTException
WLSTException: Error occured while performing connect : "Cannot connect to WLST."
Use dumpStack() to view the full stacktrace
我可以使用相同的用户名和密码从 wlst 离线模式进行相同的连接,效果很好。作为一种解决方法,我还尝试将 userconfig 和 userKey 安全文件作为参数提供给连接命令。
注意:管理服务器已经启动并运行。