当我尝试使用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用来限制读取访问权限时,它告诉我:
chmod
Error: can't read password file
我疯了吗?我怎样才能解决这个问题?
这是Ubuntu btw,带有最新的oracle jdk
确保用于运行Java进程的用户有权访问该文件(所有者/读取权限)。
尝试:
chmod 600 jmxremote.password
另外,我建议您制作自己的密码文件并使用
-Dcom.sun.management.jmxremote.password.file=pwFilePath
全部在这里解释。