prayagupadhyay
prayagupadhyay

Reputation: 31222

java jvisualvm can not see the local JVM processes

I stop seeing the local JVM processes in jvisualvm. I definitely have JVM processes running which I can verify with ps command.

$ ps aux | grep java -c
10

Here's empty jvisualvm window,

emprt jvisualvm

I tried adding JMX agent localhost:3333 as mentioned in this oracle article - Java VisualVM - Connecting to JMX Agents Explicitly. But I get can not connect to localhost:3333 using service:jmx

I see the processes in jconsole however.

enter image description here

Upvotes: 0

Views: 2028

Answers (1)

Rich P
Rich P

Reputation: 63

Open VisualVm -> Window -> Application

Local JVM processes panel should appear on the left, with the same list of processes that JConsole shows

Upvotes: 2

Related Questions