当我尝试使用JMX监视这样的应用程序时:

java -Dcom.sun.management.jmxremote.port=9999 \
     -Dcom.sun.management.jmxremote.authenticate=false \
     -Dcom.sun.management.jmxremote.ssl=false \
     JMX_tester

它告诉我:
Error: Password file read access must be restricted:
       /usr/lib/jvm/java-7-oracle/jre/lib/management/jmxremote.password

但是,当我使用chmod限制读取访问时,它告诉我:
Error: can't read password file

我疯了吗?我怎样才能解决这个问题?

这是Ubuntu btw,带有最新的oracle jdk

最佳答案

确保用于运行Java进程的用户有权访问该文件(所有者/读取权限)。

尝试:

chmod 600 jmxremote.password

另外,我建议您制作自己的密码文件并使用
-Dcom.sun.management.jmxremote.password.file=pwFilePath

都解释了here

09-27 02:09