无法连接到Tomcat JMX实例
好吧,我现在被卡住了 – 我试图用Tomcat配置JMX,如下所示
$CATALINA_BASE / setenv.sh:
CATALINA_OPTS="-Dcom.sun.management.jmxremote.port=18070 -Dcom.sun.management.jmxremote.password.file=$CATALINA_BASE/conf/jmxremote.password -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.access.file=$CATALINA_BASE/conf/jmxremote.access"
export CATALINA_OPTS
$CATALINA_BASE / conf目录/ jmxremote.password
monitorRole monitorpass
controlRole controlpass
$CATALINA_BASE / conf目录/ jmxremote.access
monitorRole readonly
controlRole readwrite
我用来访问Tomcat JMX服务器的客户端工具与Tomcat实例在同一台机器上运行.当我启动tomcat时,我可以看到有一些东西正在侦听端口18070,但是当我尝试连接时,我得到以下错误
Exception in thread "main" java.lang.SecurityException: Authentication failed! Credentials required
at com.sun.jmx.remote.security.JMXPluggableAuthenticator.authenticationFailure(JMXPluggableAuthenticator.java:193)
at com.sun.jmx.remote.security.JMXPluggableAuthenticator.authenticate(JMXPluggableAuthenticator.java:145)
at sun.management.jmxremote.ConnectorBootstrap$AccessFileCheckerAuthenticator.authenticate(ConnectorBootstrap.java:185)
at javax.management.remote.rmi.RMIServerImpl.doNewClient(RMIServerImpl.java:213)
我使用以下代码连接
try {
url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:18070/jmxrmi");
jmxc = JMXConnectorFactory.connect(url,null);
mbsc = jmxc.getMBeanServerConnection();
} catch (MalformedURLException e) {
throw new Exception(methodName + ":" + e);
} catch (IOException e) {
throw new Exception(methodName + ":" + "Failed to connect to the Tomcat Server " + e);
}
如果我将com.sun.management.jmxremote.authenticate = true设置为false,它可以正常工作.除此之外,它只是失败了.客户端工具与tomcat实例在同一台机器上运行,因此防火墙不应出现任何问题.任何线索
解决方法:
这个
JMXServiceURL url = ...;
Map env = ...;
String[] creds = {"monitorRole", "mrpasswd"};
env.put(JMXConnector.CREDENTIALS, creds);
JMXConnector cc = JMXConnectorFactory.connect(url, env);
MBeanServerConnection mbsc = cc.getMBeanServerConnection();
从http://blogs.oracle.com/lmalventosa/entry/jmx_authentication_authorization
应该有所帮助