DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
How To Enable JMX With Authentication
// This will enable jmx in port 5555 with authentication enabled. In windows systems you may get an exception related to file access permissions. To solve <a href="http://lebanl1.cz.cc/24.html">Between The Wheels mp3 ringtone download</a> this exceptions use the command cacls jmx.password /P <username>:R and cacls jmx.access /P <username>:R
-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=5555 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.access.file=d:/jmx/jmx.access -Dcom.sun.management.jmxremote.password.file=d:/jmx/jmx.password //jmx.access user readonly admin readwrite //jmx.password user user admin password //In windows to resolve the exception related to file protection //In command prompt go to the folders where the jmx password and access files are kept then cacls jmx.password /P <username>:R cacls jmx.access /P <username>:R





