--- old/src/java.management/share/classes/com/sun/jmx/remote/security/FileLoginModule.java 2014-11-20 16:03:29.812911264 +0000 +++ new/src/java.management/share/classes/com/sun/jmx/remote/security/FileLoginModule.java 2014-11-20 16:03:29.642899755 +0000 @@ -65,7 +65,7 @@ * associated cleartext password. By default, the following password file is * used: *
- *     ${java.home}/lib/management/jmxremote.password
+ *     ${java.home}/conf/management/jmxremote.password
  * 
* A different password file can be specified via the passwordFile * configuration option. @@ -113,7 +113,7 @@ // Location of the default password file private static final String DEFAULT_PASSWORD_FILE_NAME = AccessController.doPrivileged(new GetPropertyAction("java.home")) + - File.separatorChar + "lib" + + File.separatorChar + "conf" + File.separatorChar + "management" + File.separatorChar + ConnectorBootstrap.DefaultValues.PASSWORD_FILE_NAME;