簡體   English   中英

WebSphere Liberty Profile AdminClient連接

[英]WebSphere Liberty Profile AdminClient coonection

為了通過Perf Mbean監視WebSphere Application Server,我選擇了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概要文件8.5,我也需要相同的內容。 沒有有關管理控制台的詳細信息,我找不到RMI或SOAP的連接器端口詳細信息。 如何按照上述代碼配置或選擇連接器端口並連接到adminclient。 我在server.xml中執行的操作以啟用RMI或SOAP端口。

Liberty沒有像傳統WAS那樣使用管理員客戶端。 您可以按照IBM KnowledgeCenter主題中的說明使用JMX連接和管理Liberty。 Liberty可用的mbean列表可在此處找到。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM