kevinarpe
kevinarpe

Reputation: 21329

Where does Oracle Java Mission Control store settings on Windows?

I am using v5.5 on Windows from JDK v1.8.0_60. Where are connections and settings stored? I cannot find on my disk nor registry.

(Yes, I am aware of File -> Export... to save settings to file.)

Update

I tried to find the source code online, but I cannot find it. If I had the source, it would be simple to answer this question.

Upvotes: 2

Views: 1421

Answers (2)

Ghurdyl
Ghurdyl

Reputation: 1207

At least in version 8.3.1 things seem to have changed a bit. Using Process Monitor from the official Sysinternals site I could track that the application stores the connection in ~\.jmc\8.3.1\.metadata\.plugins\org.eclipse.e4.workbench\workbench.xmi

Upvotes: 0

Klara
Klara

Reputation: 3025

<USER_HOME>.jmc\5.5.0.metadata.plugins

For example C:\Users\klara.jmc\5.5.0.metadata.plugins\org.eclipse.core.runtime.settings\com.jrockit.mc.rjmx.prefs is where the connections are stored.

The source code for JMC is not part of the OpenJDK project, it's Oracle internal.

Upvotes: 2

Related Questions