OS=Solaris 5.1
Java=1.6.0_101-b14
I'm having an issue with a java email daemon and want to monitor it via Java VisualVM. I have modified my script to enable jmxremote monitoring.
-Dcom.sun.management.jmxremote \
-Dcom.sun.management.jmxremote.port=15000 \
-Dcom.sun.management.jmxremote.local.only=false \
-Dcom.sun.management.jmxremote.ssl=false \
-Dcom.sun.management.jmxremote.authenticate=false \
I have a connection to the remote host, but when I create the jmxconnection, I am prompted for credentials despite the authenticate=false. I don't have access to the java directories, so I created the jmxremote.access and jmxremote.password files locally and added the following:
-Dcom.sun.management.jmxremote.password.file=<local dir> \
-Dcom.sun.management.jmxremote.access.file=<local dir> \
I get the same behavior. In neither case my credentials do not work. Is there something within Java or the OS that may be forcing authentication?
TIA