2017-03-17 71 views
0

用于通过Perf Mbean监视WebSphere应用程序服务器 我已选择RMI或SOAP连接器端口以从Adminclient获取连接。正如下面的代码描述,WebSphere Liberty概要AdminClient连锁

Properties localProperties = new Properties(); 
localProperties.put("type", "RMI");// RMI or SOAP 
localProperties.put("host", localhost); 
localProperties.put("port", 2809);// connector port 
AdminClient client = AdminClientFactory.createAdminClient(props); 

所以我需要相同的WebSphere自由轮廓8.5。没有关于管理控制台的详细信息,我无法找到连接器端口详细信息RMI或SOAP。如何配置或选择连接器端口并按上述代码连接到adminclient。我在server.xml中做了什么来启用RMI或SOAP端口。

回答

1

Liberty没有像传统WAS一样使用管理客户端。您可以使用JMX连接并管理Liberty,如IBM KnowledgeCenter topic中所述。 Liberty的可用mbeans列表可以在here找到。

相关问题