Java – exception thrown when connecting to JMX server in spring!
So when I try to connect to JMX from jconsole, I get this exception:
Caused by: java.rmi.ConnectException: Connection refused to host: 78.84.17.116; nested exception is: java.net.ConnectException: Connection timed out: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:601) at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:198) ...
I tried to connect to such URL in jconsole: Service: JMX: RMI: / / / JNDI / RMI: / / 78.84 17.116:43030 / test
My JMX spring configuration:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:mbean-server /> <bean id="jmxExporter" class="org.springframework.jmx.export.MBeanExporter"> <property name="server" ref="jmxServer" /> <property name="assembler"> <bean class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler"> <property name="attributeSource"> <bean class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource" /> </property> </bean> </property> <property name="beans"> <map> <entry key="SpringBeans:name=hibernateStatisticsMBean" value-ref="hibernateStatisticsMBean" /> </map> </property> </bean> <bean id="jmxServer" class="org.springframework.jmx.support.MBeanServerfactorybean" p:locateExistingServerIfPossible="false" /> <bean id="serverConnector" class="org.springframework.jmx.support.ConnectorServerfactorybean" depends-on="rmiRegistry" p:objectName="connector:name=rmi" p:serviceUrl="service:jmx:rmi://78.84.17.116/jndi/rmi://localhost:43030/test" /> <bean name="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService"> <property name="statisticsEnabled" value="true" /> <property name="sessionFactory" ref="sessionFactory" /> </bean> <bean id="rmiRegistry" class="org.springframework.remoting.rmi.RmiRegistryfactorybean"> <property name="port" value="43030" /> </bean> </beans>
What do I think is the error that jconsole doesn't want to connect to this JMX server? What does the JMX URL last test mean? I just saw it in the tutorial, so I wrote the same content in my website
Edit 1: when I run netstat - ntlp on the server, I get this: tcp6 0::: 10099:: * listen 10754 / Java
10754 is the correct Java application Is that right? Running telnet on 10099.. ** I received a message and it was connected to it So I guess this is not a server-side firewall?
Editor 2: Well, I'm trying (and throwing exceptions on the server) to run the application in my local environment (in eclipse). I guess it's not a server problem because all the same things happen
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverConnector' defined in class path resource [Meta-INF/hw-common-jmx.xml]: Invocation of init method Failed; nested exception is java.io.IOException: Cannot bind to URL [rmi://localhost:43030/test]: javax.naming.NoPermissionException [Root exception is java.rmi.ServerException: remoteexception occurred in server thread; nested exception is: java.rmi.AccessException: Cannot modify this registry] at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.initializeBean(AbstractAutowireCapablebeanfactory.java:1420) at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.doCreateBean(AbstractAutowireCapablebeanfactory.java:519) at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.createBean(AbstractAutowireCapablebeanfactory.java:456) at org.springframework.beans.factory.support.Abstractbeanfactory$1.getObject(Abstractbeanfactory.java:291) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.Abstractbeanfactory.doGetBean(Abstractbeanfactory.java:288) at org.springframework.beans.factory.support.Abstractbeanfactory.getBean(Abstractbeanfactory.java:190) at org.springframework.beans.factory.support.DefaultListablebeanfactory.preInstantiateSingletons(DefaultListablebeanfactory.java:563) at org.springframework.context.support.AbstractApplicationContext.finishbeanfactoryInitialization(AbstractApplicationContext.java:895) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:425) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83) at star.Server.main(Server.java:31) Caused by: java.io.IOException: Cannot bind to URL [rmi://localhost:43030/test]: javax.naming.NoPermissionException [Root exception is java.rmi.ServerException: remoteexception occurred in server thread; nested exception is: java.rmi.AccessException: Cannot modify this registry] at javax.management.remote.rmi.RMIConnectorServer.newIOException(RMIConnectorServer.java:804) at javax.management.remote.rmi.RMIConnectorServer.start(RMIConnectorServer.java:417) at org.springframework.jmx.support.ConnectorServerfactorybean.afterPropertiesSet(ConnectorServerfactorybean.java:172) at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.invokeInitMethods(AbstractAutowireCapablebeanfactory.java:1477) at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.initializeBean(AbstractAutowireCapablebeanfactory.java:1417) ... 12 more Caused by: javax.naming.NoPermissionException [Root exception is java.rmi.ServerException: remoteexception occurred in server thread; nested exception is: java.rmi.AccessException: Cannot modify this registry] at com.sun.jndi.rmi.registry.RegistryContext.bind(RegistryContext.java:126) at com.sun.jndi.toolkit.url.GenericURLContext.bind(GenericURLContext.java:208) at javax.naming.InitialContext.bind(InitialContext.java:400) at javax.management.remote.rmi.RMIConnectorServer.bind(RMIConnectorServer.java:625) at javax.management.remote.rmi.RMIConnectorServer.start(RMIConnectorServer.java:412) ... 15 more Caused by: java.rmi.ServerException: remoteexception occurred in server thread; nested exception is: java.rmi.AccessException: Cannot modify this registry at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:396) at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:250) at sun.rmi.transport.Transport$1.run(Transport.java:159) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.Transport.serviceCall(Transport.java:155) at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662) at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255) at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233) at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:359) at sun.rmi.registry.RegistryImpl_Stub.bind(UnkNown Source) at com.sun.jndi.rmi.registry.RegistryContext.bind(RegistryContext.java:120) ... 19 more Caused by: java.rmi.AccessException: Cannot modify this registry at sun.management.jmxremote.SingleEntryRegistry.bind(SingleEntryRegistry.java:61) at sun.rmi.registry.RegistryImpl_Skel.dispatch(UnkNown Source) at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:386) at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:250) at sun.rmi.transport.Transport$1.run(Transport.java:159) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.Transport.serviceCall(Transport.java:155) at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662)
Is this problem possible in the configuration? Can someone verify that my configuration is correct?
Editor 3: I get this whenever I start an application I guess that's the problem It happens on the server and my machine
01:40:21.588 [main] INFO org.springframework.remoting.rmi.RmiRegistryfactorybean - Looking for RMI registry at port '38457' 01:40:21.654 [main] DEBUG org.springframework.remoting.rmi.RmiRegistryfactorybean - RMI registry access threw exception java.rmi.ConnectException: Connection refused to host: 188.40.111.83; nested exception is: java.net.ConnectException: Connection refused at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:601) ~[na:1.6.0_12] at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:198) ~[na:1.6.0_12] at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:184) ~[na:1.6.0_12] at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:322) ~[na:1.6.0_12] at sun.rmi.registry.RegistryImpl_Stub.list(UnkNown Source) ~[na:1.6.0_12] at org.springframework.remoting.rmi.RmiRegistryfactorybean.testRegistry(RmiRegistryfactorybean.java:281) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.remoting.rmi.RmiRegistryfactorybean.getRegistry(RmiRegistryfactorybean.java:259) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.remoting.rmi.RmiRegistryfactorybean.getRegistry(RmiRegistryfactorybean.java:236) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.remoting.rmi.RmiRegistryfactorybean.getRegistry(RmiRegistryfactorybean.java:193) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.remoting.rmi.RmiRegistryfactorybean.afterPropertiesSet(RmiRegistryfactorybean.java:164) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.invokeInitMethods(AbstractAutowireCapablebeanfactory.java:1477) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.initializeBean(AbstractAutowireCapablebeanfactory.java:1417) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.doCreateBean(AbstractAutowireCapablebeanfactory.java:519) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapablebeanfactory.createBean(AbstractAutowireCapablebeanfactory.java:456) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.Abstractbeanfactory$1.getObject(Abstractbeanfactory.java:291) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.Abstractbeanfactory.doGetBean(Abstractbeanfactory.java:288) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.Abstractbeanfactory.getBean(Abstractbeanfactory.java:190) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.Abstractbeanfactory.doGetBean(Abstractbeanfactory.java:281) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.Abstractbeanfactory.getBean(Abstractbeanfactory.java:190) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.beans.factory.support.DefaultListablebeanfactory.preInstantiateSingletons(DefaultListablebeanfactory.java:563) [org.springframework.beans-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishbeanfactoryInitialization(AbstractApplicationContext.java:895) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:425) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:83) [org.springframework.context-3.0.5.RELEASE.jar:3.0.5.RELEASE] at star.Server.main(Server.java:31) [star-engine-13.05.11.jar:na] Caused by: java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) ~[na:1.6.0_12] at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333) ~[na:1.6.0_12] at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195) ~[na:1.6.0_12] at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182) ~[na:1.6.0_12] at java.net.socksSocketImpl.connect(SocksSocketImpl.java:366) ~[na:1.6.0_12] at java.net.socket.connect(Socket.java:519) ~[na:1.6.0_12] at java.net.socket.connect(Socket.java:469) ~[na:1.6.0_12] at java.net.socket.<init>(Socket.java:366) ~[na:1.6.0_12] at java.net.socket.<init>(Socket.java:180) ~[na:1.6.0_12] at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22) ~[na:1.6.0_12] at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128) ~[na:1.6.0_12] at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:595) ~[na:1.6.0_12] ... 25 common frames omitted
Solution
Try adding the following system properties to disable security:
-Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port=39600