Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: blank change

...

The JVMTI works by using agents that communicate with the running JVM. These agents are usually loaded at JVM startup via one of the command line options -agentlib or -agentpath.

Code Block
bgColor#FFcccc

${JDK_PATH}/bin/java -agentlib:libname ApplicationName

...

To be compliant, do not start the JVM with any agents enabled.

Code Block
bgColor#ccccff

${JDK_PATH}/bin/java -Djava.security.manager ApplicationName

...