Tagged Questions
The jconsole tag has no wiki summary.
17
votes
5answers
10k views
Has anyone ever got a remote JMX JConsole to work?
It seems that I've never got this to work in the past. Currently, I KNOW it doesn't work.
But we start up our Java process:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=6002
...
12
votes
9answers
12k views
Connecting remote tomcat JMX instance using jConsole
I am trying to connect to a remote tomcat JMX instance using jConsole. But can't connect successfully. Any Idea?
I included the following option in remote tomcat catalina.sh:
JAVA_OPTS="$JAVA_OPTS ...
8
votes
4answers
10k views
Unable to use JConsole with Tomcat running as windows service
I am running tomcat 6.0.18 as a windows service. In the service applet the jvm is configured default, i.e. it is using jvm.dll of the JRE.
I am trying to monitor this application with JConsole but ...
8
votes
9answers
28k views
How do you enable JMX in Websphere?
I would like to use JConsole to monitor my Websphere application, but I am not sure how to enable JMX.
6
votes
2answers
2k views
How do I programmatically dump JMX data?
I want to be able to log all JMX data accessible via jconsole. Is there a way to do this programmatically? I'm building a form of logging of the system, and I want to create intervaled data viewable ...
6
votes
6answers
17k views
Does Java 6 open a default port for JMX remote connections?
My specific question has to do with JMX as used in JDK 1.6: if I am running a Java process using JRE 1.6 with
com.sun.management.jmxremote
in the command line, does Java pick a default port for ...
5
votes
1answer
249 views
JConsole command line credentials
Is it possible to pass credentials for monitored resource to JConsole while starting it via command line. I've got the command like that right now.
${jdk.home}/bin/jconsole.exe
...
5
votes
1answer
1k views
How to connect to a java program on localhost jvm using JMX?
I should connect to a java program on localhost jvm using JMX. In other words I want to develop a JMX client to config a java program on localhost.
Don't recommend using JConsole! JConsole is not ...
5
votes
4answers
6k views
Remote JMX connection
I'm trying to open a JMX connection to java application running on a remote machine.
The application JVM is configured with the following options:
com.sun.management.jmxremote
...
4
votes
4answers
2k views
Using Jconsole for Memory Leak
I'm trying to diagnose some memory issues in our J2EE server. I've setup jconsole on our live server and I'm trying to monitor the status of the tomcat server through it. I've a quick question about ...
4
votes
2answers
293 views
Web enabling Java console application's JMX beans
I have built a Java console-based application and exposed key methods via Spring/JMX declarations. Using JConsole, I can invoke these methods but more ideally, I would like to build a management-style ...
4
votes
2answers
686 views
How to get csv data used to create graphs in Jconsole
newbie here.
I have a java application and I am working on to monitor that java application. I come to know about the java monitoring and management control using 'JConsole'. It giving a very detailed ...
4
votes
2answers
6k views
How do you pull up the java console in OpenSUSE or Ubuntu?
I'm working on a java applet, and I was wondering where the heck System.out was going in Ubuntu/OpenSUSE. In windows, I just pull up jconsole, but I've not found this in Ubuntu/OpenSUSE.
Thanks.
4
votes
6answers
1k views
Strategies for the diagnosis of Java memory issues
I've been tasked with debugging a Java (J2SE) application which after some period of activity begins to throw OutOfMemory exceptions. I am new to Java, but have programming experience. I'm ...
4
votes
2answers
2k views
How to have JMX bind to a specific interface?
I am currently starting my Java VM with the com.sun.management.jmxremote.* properties so that I can connect to it via JConsole for management and monitoring. Unfortunately, it listens on all ...
3
votes
2answers
289 views
How to read heap dump file which is created by jconsole?
I performed a heap dump manually by invoking the com.sun.management.HotSpotDiagnostic MXBean's dumpHeap operation in jconsole. So I got a dump file.
My question:
Can jconsole read the dump file? If ...
3
votes
1answer
229 views
jconsole equivalent for .Net?
I'm looking for a DLL you could link to, that will give your .Net app profiling abilities equivalent to jconsole. Specifically, what I imagine is something like this:
You add a DLL to your project
...
3
votes
1answer
887 views
Disabling Local JMX Connections on JVM
We are writing a java program which keeps a password in memory. Unfortunately, the user can easily use jconsole or jmap to create a heap dump file and open it to find the password. I think jconsole ...
3
votes
2answers
4k views
How to activate JMX on my JVM for access with jconsole?
How to activate JMX on a JVM for access with jconsole?
3
votes
1answer
188 views
How do you get jconsole charts to show decimals?
If you return a double or float from your MBean jconsole seems to round it down to the nearest integer.
2
votes
2answers
59 views
Java Thread monitoring. How to find out non daemon live threads?
I do some work with a multithread program. I see in JConsole that I still have 2 non daemon threads but I can't find out which exactly (total number of thread is beyond 30). Visual VM also seems to ...
2
votes
1answer
41 views
A question about connection in jconsole
Good Day!
Friends, when I am runing a SampleTest (written in java by here, simulating a deadlock environmentn), Jconsole GUI response that being connecting to * (refer to SampleTest PID)
How can I ...
2
votes
2answers
164 views
Is enabling JConsole remote monitoring affect system performance in production?
Oracle/Sun says its fine as long as you don't run it locally on production box?
http://download.oracle.com/javase/1.5.0/docs/guide/management/jconsole.html
Note: Using jconsole to monitor a local ...
2
votes
1answer
379 views
Accessing Websphere 7 MBeans using Sun JConsole
How do I access Websphere 7 MBeans using Sun's JConsole?
2
votes
1answer
393 views
Monitor c3p0 (with hibernate and Tomcat) with JConsole
The Web App is a Struts application (no spring) using c3p0 with Hibernate and it's in Tomcat 6. Both Hibernate and c3p0 jars are in the {WEB_APP}/WEB-INF/lib folder.
In Tomcat the jmx remote is ...
2
votes
3answers
231 views
Are JMX CompositeDataSupport attributes always read-only in JConsole?
Following MXBeans in Java SE 6: Bundling Values Without Special JMX Client Configurations I managed to implement a MXBean which exposes a Map<String, String> for a list of configuration ...
2
votes
3answers
211 views
What launches a JVM thread?
(Please correct me if i am wrong)
I understand that when you run a java program by issuing the java command,
java MyProg
the program will be run onto a new JVM.
What loads the program into a ...
2
votes
2answers
922 views
How do I create a thread dump via JMX?
I have a Tomcat running as a Windows Service, and those are known not to work well with jstack. jconsole is working well, on the other hand, and I can see stacks of individual threads (I'm connecting ...
2
votes
1answer
148 views
How does JConsole decide what order to use JMX keys to render a tree?
When viewing JMX beans in JConsole it renders all the beans under a given domain part as a hierarchy. (JVisualVM has the same behaviour with the JConsole MBeans plugin.)
I realise that JMX object ...
2
votes
4answers
431 views
how to ouput text to java console from servlet
I have a servlet. But it is not working as desired. Hence for debugging purposes, I want to print statements to the java console(the one that can be opened using the java icon in taskbar). However, if ...
2
votes
3answers
1k views
MBean Simple Graph Monitor
I have some JMX Beans that expose performance information in my application. I would like to have some facility to plot an attribute of an MBean in a graph for monitoring (a la Windows Perf Mon). I ...
2
votes
3answers
965 views
JConsole Threads Tab - Understand Info
I'm running JBoss 5. I see that memory keep is increasing as time pass.
The number of active threads are increasing. The following stacktrace is taken from an active thread which is one of many ...
2
votes
1answer
880 views
enable HeapDumpOnOutOfMemoryError in runtime
according to http://java.sun.com/javase/6/webnotes/trouble/TSG-VM/html/clopts.html it should be possible to enable -XX:+HeapDumpOnOutOfMemoryError using JConsole in runtime. How?
I assume its ...
2
votes
2answers
1k views
Running a java process with remote management enabled
I am trying to run a java process and enable remote connections using jconsole. I add the following parameters to the command line (before the main class):
-Dcom.sun.management.jmxremote.port=9999 ...
2
votes
2answers
577 views
CompositeData has no keys() method?
I'm using JMX to save some diagnostic information from a remote process. Looking at the interface in jconsole shows that the return type is CompositeData (the data actually comes back as ...
2
votes
5answers
7k views
Problem using JConsole remotely with JBoss 4.2.2 with app that uses JWS
I am trying to set up JBoss 4.2.2 and JConsole for remote monitoring. As per many of the how-to's I have found on the web to do this you need to enable jmxremote by setting the following options in ...
1
vote
1answer
16 views
What is the use of configuring management.properties in profiling remote JVM
It is required to configure management.properties in 'jre_home\lib\management' to enable remote monitoring. But even after configuring the required properties below
...
1
vote
0answers
34 views
Can I authenticate on jconsole using kerberos?
Does anyone know if it's possible to authenticate on jconsole using kerberos?
I set up a tomcat with kerberos authentication which works fine if you visit the manager in a browser. The trouble starts ...
1
vote
1answer
46 views
How to watch JMX Mbeans
jconsole requires GUI which does not work under terminal. Any tools I can use in the terminal to retrieve JMX information?
1
vote
1answer
356 views
Can't connect to weblogic server remotely using JConsole
first I would like to make clear I google and search on the web a lot looking for answers to try to resolve this issue but unfortunately I couldn't so my last resource is to post another question ...
1
vote
0answers
85 views
Monitoring Tomcat via JConsole in a local setting
I've been trying to monitor a locally running Tomcat via JConsole. I, of course, added
-Dcom.sun.management.jmxremote to the CATALINA_OPTS variable in catalina.bat, but when starting JConsole, I ...
1
vote
1answer
210 views
Monitoring remote system using Jconsole
I am connecting to remote Unix system using putty and .ppk key file.
Now i want to monitor this remote unix system using Jconsole.
On remote system jmx port is enabled on 8080.
I have its ip address ...
1
vote
1answer
70 views
Could Jconsole be used to monitor IBM JDK?
Could JConsole be used to monitor IBM JDK? I want to know which Garbage Collection tool is applied Sun JDK and IBM JDK, and it's free.
1
vote
1answer
66 views
Can jconsole be used to identify memory leaks in JNI C++ objects?
Is it possible to identify the C++ allocations that are unfreed? The C++ calls are made using JNI from my Java application to which I'm planning to attach jconsole. If that is possible please tell how ...
1
vote
5answers
796 views
Debugging JConsole Connection Failed
Good day,
I have a web application deployed to a remote resin server, and it has JMX turned on.
I can telnet to the remote server i.e
franz@see:/tmp$ telnet <remote-ip> 5555
Trying ...
1
vote
3answers
725 views
Issue logging in into Tomcat JMX Services via jconsloe : javax.management.remote.rmi.RMIConnector.connect(RMIConnector.java:281)
We are running Tomcat 6 on RHEL 5 and Oracle JDK 1.6_24 and I am having a problem loggin into the jmx services remotely through jconsole.
Here is my setenv.sh :
JAVA_OPTS="-Xms512m -Xmx1152m ...
1
vote
3answers
1k views
How can I connect to Weblogic remotely using JConsole?
Which URL, port and weblogic server side settings do I need to use?
1
vote
1answer
747 views
How to connect to an mBeanServer in another local process?
If you set the "com.sun.management.jmxremote" system property when you start a JVM, you can run jconsole or visualvm and connect to that local mBeanServer. I want to do the same thing they are doing ...
1
vote
3answers
278 views
Is there a way to do a live heap dump with ibm-jdk for linux?
I known that it's possible to dump heap when an OutOfMemoryException is occuring on this JVM but is it possible to ask a live dump with tools like jmap or jconsole?
1
vote
1answer
449 views
ManagementFactory.getPlatformMBeanServer() vs MBeanServerFactory.createMBeanServer()
Can anyone please clarify what the differences are between the two?
The Javadoc is really obscure for my proper understanding.
One thing I have noticed is if I use ...