server « jmx « Java Enterprise Q&A





1. Is it necessary to unregister an MBean from the Platform MBean Server?    stackoverflow.com

I've begun playing with MBeans for exposing some information about an app. Pretty much the totality of HOWTOs / Tutorials / Blog posts / Samples online teach you how to implement ...

2. Accessing a remote MBean server    stackoverflow.com

I am running a client/server application using JBoss. How can I connect to the server JVM's MBeanServer? I want to use the MemoryMX MBean to track the memory consumption. I can connect to ...

3. Calling JMX MBean method from a shell script    stackoverflow.com

Are there any libraries that would allow me to call a JMX MBean method from a shell script. We expose some operations/admin commands through JMX, and we could have our admins ...

4. JMX confuse(remote server control)    stackoverflow.com

I have a couple of Tomcat and Glassfish servers. And i want to manage them over JMX. "Use JConsole" - you could say, but this is wrong way ...

5. I cannot get Java JMX server to bind to 127.0.0.1 only!    stackoverflow.com

I have a java server. I want to be able to connect to it with a JMX client. I do this:

JMXServiceURL jmxUrl = new JMXServiceURL(null,null,JMX_PORT);
JMXConnectorServer jmxRemoteServer;
jmxRemoteServer=JMXConnectorServerFactory.newJMXConnectorServer(jmxUrl, jmxEnvironment, server);
jmxRemoteServer.start();
This works. I can ...

6. How to publish JMX stats on to a single remote server    stackoverflow.com

Lets say I have two applications/tomcats T1 and T2, both of which are jmx enabled. Each of them normally would have their own URL <serve_X>:<port_X> to which the jmx clients would ...

7. Is there a way for C# to communicate with a Java server via JMX using MBeans?    stackoverflow.com

I have a server written to Java to service HTTP requests for various clients. I also have some MBeans on this server exposed over JMX from which a monitoring tool ...

8. JMX server locator replacement in JBoss AS 7 for class MBeanServerLocator    stackoverflow.com

I am currently using JBoss 4.3 for a web application. I would like to move to the JBoss AS 7. I have been able to fix must of the differences of ...

9. Mbeans registered to mbean server not showing up in jconsole    stackoverflow.com

I create a mbean server using MBeanServerFactory.createMBeanServer and register mbeans with it. I can find the mbean server in jconsole but when I connect to it I do not see ...