JMX 密码读取访问问题

2022-09-01 03:09:17

当我尝试使用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,带有最新的oracle jdk


答案 1

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

尝试:

chmod 600 jmxremote.password

另外,我建议您将制作自己的密码文件并运行它

-Dcom.sun.management.jmxremote.password.file=pwFilePath

这里都解释了。


答案 2

如果要绕过身份验证,请尝试使用以下参数。

-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.port=port
-Dcom.sun.management.jmxremote.ssl=false