In the past, I have started jstatd via a security policy file, as suggested here: https://stackoverflow.com/a/14930180/1294116
However, in Java 9+, they have removed the tools.jar
file, which means that this solution no longer works. Does anyone know how to get around this? (Currently I am back to getting the error java.security.AccessControlException: access denied ("java.util.PropertyPermission" "java.rmi.server.ignoreSubClasses" "write") ...
)
Java 19 Update: Release Notes -
jstatd
No Longer Requires a SecurityManager (JDK-8272317)Solution
The following policy file should work for you (at least under Java 11):
Thanks to Sebastian S for pointing out
jdk.internal.jvmstat
also needed to be granted the appropriate permission and for confirming the above works. Thanks to Gili for the latter as well.As shown below, the
tools.jar
file was removed and everything in it was split up into modules. Thejstatd
tool now resides in thejdk.jstatd
module. I couldn't find documentation regarding how it was determined which tool(s) went into which module, though the Javadoc does tell you after-the-fact. Just note that some modules contain the code for a single tool while other modules contain the code for multiple tools.Documentation
From the Policy File Syntax documentation:
From JEP 200: The Modular JDK:
From JEP 220: Modular Run-Time Images:
Both JEP 200 and JEP 220 were part of Project Jigsaw.