用于通过Perf Mbean监视WebSphere应用程序服务器 我选择了RMI或SOAP连接器端口来从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 Liberty profile 8.5。没有关于管理控制台的详细信息我找不到连接器端口详细信息RMI或SOAP。如何配置或选择连接器端口并连接到adminclient,如上面的代码。我在server.xml中做了什么来启用RMI或SOAP端口。
答案 0 :(得分:1)
Liberty并没有像您一样使用传统WAS的管理客户端。您可以使用JMX连接和管理Liberty,如IBM KnowledgeCenter topic中所述。可以找到Liberty的可用mbeans列表here。