JMX与websphere建立连接过程抛出IOException?
JMX与websphere建立连接过程抛出IOException
请各位帮我看看是什么原因:
连接方法如下:
public void createJMXConnector(){ String host="localhost"; String port="2310"; String jndiPath="/jndi/JMXConnector"; //Hashtable h = new Hashtable(); try{ JMXServiceURL serviceURL=new JMXServiceURL("service:jmx:iiop://"+host+":"+port+jndiPath); jmxConnector=JMXConnectorFactory.connect(serviceURL); msCon=jmxConnector.getMBeanServerConnection(); System.out.println("Connected to DeploymentManager"); }catch(SecurityException e){ System.out.println("SecurityException="+e.getMessage()); } catch(IOException e){ System.out.println("IOException="+e.getMessage()); } catch(Exception e){ System.out.println(e.getMessage()); } }抛出异常如下:
IOException=Failed to retrieve RMIServer stub: javax.naming.NameNotFoundException: Context: MZ9WJAENVT3WIL9Node01Cell/nodes/MZ9WJAENVT3WIL9Node01/servers/server1, name: JMXConnector: First component in name JMXConnector not found. [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道您实现了没有,我最近做这个也遇到了问题