|
NAMEjstatd - monitor the creation and termination of instrumented Java HotSpot VMsSYNOPSISNote: This command is experimental and unsupported.jstatd [options]
DESCRIPTIONThe jstatd command is an RMI server application that monitors for the creation and termination of instrumented Java HotSpot VMs and provides an interface to enable remote monitoring tools, jstat and jps, to attach to JVMs that are running on the local host and collect information about the JVM process.The jstatd server requires an RMI registry on the local host. The jstatd server attempts to attach to the RMI registry on the default port, or on the port you specify with the -p port option. If an RMI registry is not found, then one is created within the jstatd application that's bound to the port that's indicated by the -p port option or to the default RMI registry port when the -p port option is omitted. You can stop the creation of an internal RMI registry by specifying the -nr option. OPTIONS FOR THE JSTATD COMMAND
SECURITYThe jstatd server can monitor only JVMs for which it has the appropriate native access permissions. Therefore, the jstatd process must be running with the same user credentials as the target JVMs. Some user credentials, such as the root user in Oracle Solaris, Linux, and OS X operating systems, have permission to access the instrumentation exported by any JVM on the system. A jstatd process running with such credentials can monitor any JVM on the system, but introduces additional security concerns.The jstatd server doesn't provide any authentication of remote clients. Therefore, running a jstatd server process exposes the instrumentation export by all JVMs for which the jstatd process has access permissions to any user on the network. This exposure might be undesirable in your environment, and therefore, local security policies should be considered before you start the jstatd process, particularly in production environments or on networks that aren't secure. The jstatd server installs an instance of RMISecurityPolicy when no other security manager is installed, and therefore, requires a security policy file to be specified. The policy file must conform to Default Policy Implementation and Policy File Syntax. If your security concerns can't be addressed with a customized policy file, then the safest action is to not run the jstatd server and use the jstat and jps tools locally. However, when using jps to get a list of instrumented JVMs, the list will not include any JVMs running in docker containers. REMOTE INTERFACEThe interface exported by the jstatd process is proprietary and guaranteed to change. Users and developers are discouraged from writing to this interface.EXAMPLESThe following are examples of the jstatd command. The jstatd scripts automatically start the server in the background.INTERNAL RMI REGISTRYThis example shows how to start a jstatd session with an internal RMI registry. This example assumes that no other server is bound to the default RMI registry port (port 1099).jstatd -J-Djava.security.policy=all.policy EXTERNAL RMI REGISTRYThis example starts a jstatd session with an external RMI registry.
This example starts a jstatd session with an external RMI registry server on port 2020.
This example starts a jstatd session with an external RMI registry on port 2020 that's bound to AlternateJstatdServerName.
STOP THE CREATION OF AN IN-PROCESS RMI REGISTRYThis example starts a jstatd session that doesn't create an RMI registry when one isn't found. This example assumes an RMI registry is already running. If an RMI registry isn't running, then an error message is displayed.jstatd -J-Djava.security.policy=all.policy -nr ENABLE RMI LOGGINGThis example starts a jstatd session with RMI logging capabilities enabled. This technique is useful as a troubleshooting aid or for monitoring server activities.jstatd -J-Djava.security.policy=all.policy -J-Djava.rmi.server.logCalls=true
Visit the GSP FreeBSD Man Page Interface. |