|
NAMEjinfo - generate Java configuration information for a specified Java processSYNOPSISNote: This command is experimental and unsupported.jinfo [option] pid
Note: JDK 10 has added support for using the Attach API when attaching to Java processes running in a separate docker process. However, the jps command will not list the JVM processes that are running in a separate docker instance. If you are trying to connect a Linux host with a Virtual Machine that is in a docker container, you must use tools such as ps to look up the PID of the JVM. DESCRIPTIONThe jinfo command prints Java configuration information for a specified Java process. The configuration information includes Java system properties and JVM command-line flags. If the specified process is running on a 64-bit JVM, then you might need to specify the -J-d64 option, for example:jinfo -J-d64 -sysprops pid This command is unsupported and might not be available in future releases of the JDK. In Windows Systems where dbgeng.dll is not present, the Debugging Tools for Windows must be installed to have these tools work. The PATH environment variable should contain the location of the jvm.dll that's used by the target process or the location from which the core dump file was produced. OPTIONS FOR THE JINFO COMMANDNote:If none of the following options are used, both the command-line flags and the system property name-value pairs are printed.
Visit the GSP FreeBSD Man Page Interface. |