Java Management eXtensions is a standard Java API that enables the instrumentation and monitoring of a running Java program.

learn more… | top users | synonyms (1)

0
votes
1answer
128 views

can't access mbean when objectname uses a wildcard

I am having an issue accessing an mbean using ObjectName expression matching. The following code successfully sets boolean b: ObjectName objName = new ObjectName("UnifiedSystem-search Cluster Control ...
1
vote
1answer
133 views

How do I view available webservices on Tomcat?

There are two applications deployed in our project, one each on JBoss and Tomcat (using a proprietary FAST stack framework). The following URL lists available web services / the jmx-console on JBoss: ...
0
votes
1answer
236 views

Spring Integration: Autowiring Queues Failing when using JMX

I can autowire two QueueChannel instances using @Autowired and @Qualifier in a test class just fine, until I add JMX export namespace handlers. I've not got the exact config handy (it was a problem ...
0
votes
0answers
246 views

Can't access JBoss 5.1.0.GA on centos 5.5 remotely

I would like to access JBoss 5.1.0.GA's mbeans.I used centos 5.5.I already setup the following lines in my JBoss's run.sh JAVA_OPTS="$JAVA_OPTS -Djboss.platform.mbeanserver" ...
1
vote
1answer
307 views

JBoss AS7: How to read datasource pool statistics with JMX

In JBossAS4, the MBean jboss.jca.ManagedConnectionPool allows to access, e.g., the number of used and the number of available connections of a data source. This MBean is no longer available in ...
1
vote
2answers
941 views

What is wrong with this Java code for a RMI JMX connection?

What is wrong with this Java code for a RMI JMX connection? I am clearly not trying to connect to localhost but the error implies that I am. On the remote server, I enabled JMX options on port ...
0
votes
0answers
26 views

Fast and good web UI to manage JMX beans [duplicate]

Possible Duplicate: Web based JMX console for Tomcat? I need expose some beans of my Tomcat web-app, through a web UI. What are the good tools/libraries which make it easy to manage the ...
0
votes
1answer
97 views

How to connect to a local JMX server by knowing the process id?

The motivation behind this is to manage local java services, using JMX, without something more heavyweight like the java service Wrapper. Each service is started with -Dcom.sun.management.jmxremote ...
1
vote
2answers
163 views

Historical Trending of a JVM [closed]

Is there a open source tool readily available that would monitor remote JVM processes on a server. Ideally it would read the telemetry via JMX and store into a historical database with a pretty GUI ...
0
votes
1answer
46 views

How to retrieve IP address of JMX Notification message?

I am deploying two Java application with JMX server. The two sending message to JMX Client. However I can't differentiate where the message come from. How to retrieve IP address of JMX Notification ...
0
votes
0answers
322 views

JMX connection timeout

I am using JVM monitor to profile an application on a remote server. The connection towards the remote server is very slow and I always get "The connection timed out" when I try to connect. I had a ...
1
vote
1answer
139 views

activemq jmx mbeans not visible from remote host

I got activemq running on remote server. When I connect to it from my dev machine using JMX (for example with jconsole), I see only some of beans (broker MBean, but not MBeans of queues, topics, ...
1
vote
1answer
84 views

problems retrieving attribute from MBean

I try to access a String attribute Token from an MBean in JBoss7. I can verify that the MBean is registered and the getter String getToken() is part of the interface. mbServer holds the mbean server ...
4
votes
0answers
249 views

Maven throws “Error injecting and NoClassDefFoundError”,when i trying to build archive .sar inside .ear

I have maven project. My ear archive consist from jar and war. And he builds without error. Problems began when i try to add .sar package to project. And he more not building. He throws exception. I ...
4
votes
1answer
270 views

Which MBeanServer to use in Tomcat, WebLogic, Glassfish et al?

I am currently working on http://truevfs.java.net , a virtual file system for Java. TrueVFS is modular and uses a plug-in architecture to load features at run-time without the need for configuring ...
0
votes
1answer
59 views

Export a Bean from one JMX server to another JMX server

Is it possible to get an already registered MBean from one JMX server to another?
1
vote
1answer
422 views

Exception while using activemq's BrokerViewMBean

I am trying to access jmx functionality from the same process within which I am running the activemq broker and expose some properties through a web service. The code looks as follows: ...
2
votes
0answers
88 views

How to connect to JMX service on Glassfish from within an EJB?

I have a message-driven EJB deployed to a Glassfish 2.x system. When I get a message that causes an exception or isn't able to be sent or consumed, I would like to do one of the following things: ...
2
votes
1answer
59 views

Why does tomcat creates an MBean with Catalina:type=ServerClassLoader,name=common

i was going through tomcat 6 source code which in Bootstrap.java creates a MBean with the following line "Catalina:type=ServerClassLoader,name="+common. Line 180. I am unable to understand why it ...
0
votes
0answers
339 views

JBoss AS 7.1.1, JConsole and TopThreads plugin

Could somebody help me with configuring JBoss JConsole script, to enable it with topthreads plugin? I successfulyy connected to my remote server, but I can't seem to find way to attach plugin into ...
1
vote
2answers
310 views

Creating and deleting jms queues using jmx in websphere 8.5

I am searching for a way to create and delete jms queues using jmx through a java client. I know we do get AdminClient for jmx administration. But I am not able to get which mbean we can use to ...
1
vote
1answer
137 views

Java JMX get the logged in user

I have a JMX server started by JVM process that can be optionally secured (for now its not, so I'm ready to consider any extensible way for it). For example as an option I looked at official tutorial ...
1
vote
1answer
288 views

JSR-160 access to a secured WebSphere AppServer

I'm trying to access a WebSphere 7 AppServer, which has security enabled, using JSR-160 classes. I can get a connection going with the following, provided I define the java.ext.dirs system property ...
0
votes
1answer
322 views

JSVC to start as daemon - Enable JMX?

i'm using JSVC to start my java program as a daemon which should run 24/7. However, i used to enable JMX to monitor my application until i decided to convert it to a daemon. My init.d Script is like ...
4
votes
3answers
1k views

jmx/jstatd access to remote machine through an ssh tunnel

I'd like to use visualvm app through an ssh tunnel (to an EC2 machine) using jmx OR jstatd. How do I do this? Here is a list of what has been tried (and failed): (BTW: if visual vm is not appropriate, ...
0
votes
1answer
72 views

exception cannot bind URL in JMX server

I want to write a JMX server and client and while writing the client i encountered this problem I can register my MBean properly but when I am trying to run the server I get the following exception: ...
0
votes
1answer
37 views

serviceUnavilableException in writing jmx server

I am having a problem with writing jmx Server. I get cannot bind to url [rmi:localhost:9999/server], getting an exception in the following line: JMXServiceURL url = new ...
3
votes
0answers
457 views

How to set request timeout for JMX Connector

I'm trying to set request timeout for JMX Connector but seems like it doesn't work. env.put("jmx.remote.x.request.waiting.timeout", new Long(30000)); But since it didn't work, i googled to see the ...
0
votes
0answers
232 views

The JVM option jmxremote.local.only=true does not work properly

I wrote a batch Java 7 application that should be controlled by a JMX client. The JMX service is up and running, and I can connect to it using jConsole from my machine. I set the option ...
0
votes
0answers
90 views

Spring JMX not exposing bean

I have the following snippet in my applicationContext.xml <context:component-scan base-package="mrpomario.springcore.jmx"/> <context:mbean-server/> <!-- NOT SURE IF NEEDED --> ...
1
vote
0answers
177 views

Cannot get Spring to export annotations to JMX

I can't for the life of me get Spring to export metadata about my JMX beans. I have Spring configured as follows: <bean id="attributeSource" ...
0
votes
1answer
289 views

Spring, prototypes, and MBeanExporter

I am using Spring in conjunction with its MBeanExporter. I have a prototype bean definition which should only be instantiated when a call to ApplicationContext.getBean() is made. However, the ...
0
votes
1answer
208 views

error while creating adminclient for websphere 7.0.0.11

I need to develop an application for managing WebSphere Application Server v7.0.0.11. I explored a bit and found out that we can use Mbeans. Actually I need to create something similar as Web-sphere's ...
1
vote
0answers
134 views

restarting sslsocketconnector after putting a new socket in truststore on jetty

I have a jetty webserver. I am trying to register a certificate into the truststore. The certificate gets registered properly but when a client tries to authenticate with a registered certificate the ...
0
votes
1answer
139 views

Can spring JMX export the same bean instance under two different bean names?

In Spring 3.1 I am trying to export the same bean via JMX under two different bean names with two different interfaces. Below is some example spring xml configuration showing what I am trying to do: ...
1
vote
0answers
170 views

Using Tomcat JMX Proxy from java client for starting/stopping web application

I'm trying to write a simple java client for starting/stopping application deployed on Tomcat using Tomcat JMX Proxy. Tomcat's documentation here ...
0
votes
0answers
117 views

Monitor system health over JMX [closed]

I'm looking for ready to use monitoring system to keep an eye on health of my application. This application is pure java process accessible over JMX with many parameters exposed. So the monitoring ...
0
votes
0answers
58 views

Hosting singleton object as jmx service?

I have three webapps app1, app2 and app3 using tomcat. app1 and app2 are web apps. app3 simply host singleton class which will be accessed by app1 and app2. I am planning to use to JNDI lookup the ...
0
votes
4answers
201 views

JMXConnectorServer autoshutdown

I'm trying to start JMXConnectorServer for management / debug purposes. But I don't want this service to prevent application from exit normaly when last non-daemon thread exits. In other words, I want ...
2
votes
1answer
142 views

Open Type MXBean issue

While starting MXBean, i am getting error mentioning Method SampleServiceMXBean.register has parameter or return type that cannot be translated into an open type. As per the error message says its ...
0
votes
1answer
286 views

Disable jmx in red5

Red5 takes more time while starting in centOS. I checked the stdout.log. There is JMX timeout error. [ERROR] [main] org.red5.server.jmx.JMXAgent - {} java.io.IOException: Cannot bind to URL ...
0
votes
0answers
215 views

JBoss 6.1.0 - JMX-Console war not getting deployed

When i try to access URL: http://myhost.com/jmx-console/ I do not see anything, no error nothing on web page. In server.log i see this message coming up, and nothing else: WARN ...
2
votes
4answers
267 views

JMX Monitoring Software

I am trying to find a good monitoring software for my simple hello world application written by test purposes. So far I have tried SCOM 12 and OP5... which I didn't like because I want something more ...
0
votes
1answer
59 views

Cassandra API JMX server thread

In cassandra api which class starts JMX Server thread....? Is it StandardMBean or StorageService...? functionality of cassandra wrapper.exe
0
votes
0answers
109 views

How to start JMX server for cassandra service via programatically

How to start JMX server for cassandra service via programatically. I have to start the cassandra service via code not as windows service [service.msc] and have to take snapshot. If Cassandra service ...
1
vote
1answer
665 views

How to bind an object to JNDI in Jboss 7 from MBean? (Naming context is read-only)

When binding object to JNDI from MBean (legacy code to jboss 7.1) i am getting following exception: Caused by: java.lang.UnsupportedOperationException: JBAS011859: Naming context is read-only at ...
0
votes
0answers
138 views

dynamic distributed application properties with hazelcast exposed via jmx

We have java application on several nodes with hazelcast for interconnection grid between them. And we need to change some application properties in runtime w/o restart. These props now are just ...
0
votes
0answers
73 views

Insufficient Privileges while invoking IBM Websphere property using JMX?

I got exception insufficent privilges when I try to change IBM Websphere resource using JMX. I want to change Websphere resource using AdminServiceFactory. I don't want to use AdminClientFactory due ...
1
vote
1answer
591 views

Why might this inner class be a noncompliant MBean?

It seems that the fact that my class is an inner class is causing the issue, that's my hunch - but basically it's otherwise the usual pattern: public class UserProvisionerProfiler implements ...
0
votes
1answer
102 views

throw exception through mbean operation

What is the proper exception handling strategy for MBean operations? Some of these operations can fail (e.g. drop a user who isn't connected) and an exception should be reported, but I don't know how ...

1 3 4 5 6 7 18