jstatd.1 revision 5116:d45bc4307996
1." Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
2." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3."
4." This code is free software; you can redistribute it and/or modify it
5." under the terms of the GNU General Public License version 2 only, as
6." published by the Free Software Foundation.
7."
8." This code is distributed in the hope that it will be useful, but WITHOUT
9." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10." FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11." version 2 for more details (a copy is included in the LICENSE file that
12." accompanied this code).
13."
14." You should have received a copy of the GNU General Public License version
15." 2 along with this work; if not, write to the Free Software Foundation,
16." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17."
18." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
19." or visit www.oracle.com if you need additional information or have any
20." questions.
21."
22.TH jstatd 1 "10 May 2011"
23
24.LP
25.SH "Name"
26jstatd \- Virtual Machine jstat Daemon
27.LP
28.SH "SYNOPSIS"
29.LP
30.nf
31\f3
32.fl
33jstatd [ \fP\f4options\fP\f3 ]\fP
34.br
35\f3
36.fl
37\fP
38.fi
39
40.LP
41.SH "PARAMETERS"
42.LP
43.RS 3
44.TP 3
45options
46Command\-line options. The options may be in any order. If there are redundant or contradictory options, the last option specified will take precedence.
47.RE
48
49.LP
50.SH "DESCRIPTION"
51.LP
52.LP
53The \f3jstatd\fP tool is an RMI server application that monitors for the creation and termination of instrumented HotSpot Java virtual machines (JVMs) and provides a interface to allow remote monitoring tools to attach to JVMs running on the local host.
54.LP
55.LP
56The \f3jstatd\fP server requires the presence of an RMI registry on the local host. The \f3jstatd\fP server will attempt to attach to the RMI registry on the default port, or on the port indicated by the \f2\-p port\fP option. If an RMI registry is not found, one will be created within the \f3jstatd\fP application bound to the port indicated by the \f2\-p port\fP option or to the default RMI registry port if \f2\-p port\fP is omitted. Creation of an internal RMI registry can be inhibited by specifying the \f2\-nr\fP option.
57.LP
58.LP
59\f3NOTE:\fP This utility is unsupported and may or may not be available in future versions of the JDK. It is not currently available on the Windows 98 and Windows ME platforms.
60.LP
61.SH "OPTIONS"
62.LP
63.LP
64The \f3jstatd\fP command supports the following options:
65.LP
66.RS 3
67.TP 3
68\-nr
69Do not attempt to create an internal RMI registry within the \f2jstatd\fP process when an existing RMI registry is not found.
70.TP 3
71\-p\  port
72Port number where the RMI registry is expected to be found, or, if not found, created if \f2\-nr\fP is not specified.
73.TP 3
74\-n\  rminame
75Name to which the remote RMI object is bound in the RMI registry. The default name is \f2JStatRemoteHost\fP. If multiple \f3jstatd\fP servers are started on the same host, the name of the exported RMI object for each server can be made unique by specifying this option. However, doing so will require that the unique server name be included in the monitoring client's \f2hostid\fP and \f2vmid\fP strings.
76.TP 3
77\-Joption
78Pass \f2option\fP to the \f3java\fP launcher called by \f3javac\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
79.RE
80
81.LP
82.SH "SECURITY"
83.LP
84.LP
85The \f3jstatd\fP server can only monitor JVMs for which it has the appropriate native access permissions. Therefor the \f3jstatd\fP process must be running with the same user credentials as the target JVMs. Some user credentials, such as the \f2root\fP user in UNIX(TM) based systems, have permission to access the instrumentation exported by any JVM on the system. A \f3jstatd\fP process running with such credentials can monitor any JVM on the system, but introduces additional security concerns.
86.LP
87.LP
88The \f3jstatd\fP server does not provide any authentication of remote clients. Therefore, running a \f3jstatd\fP server process exposes the instrumentation export by all JVMs for which the \f3jstatd\fP process has access permissions to any user on the network. This exposure may be undesireable in your environment and local security policies should be considered before starting the \f3jstatd\fP process, particularly in production environments or on unsecure networks.
89.LP
90.LP
91The \f3jstatd\fP server installs an instance of RMISecurityPolicy if no other security manager has been installed and therefore requires a security policy file to be specified. The policy file must conform to the default policy implementation's
92.na
93\f2Policy File Syntax\fP @
94.fi
95http://download.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html.
96.LP
97.LP
98The following policy file will allow the \f3jstatd\fP server to run without any security exceptions. This policy is less liberal then granting all permissions to all codebases, but is more liberal than a policy that grants the minimal permissions to run the \f3jstatd\fP server.
99.LP
100.nf
101\f3
102.fl
103grant codebase "file:${java.home}/../lib/tools.jar" {\fP
104.br
105\f3
106.fl
107   permission java.security.AllPermission;\fP
108.br
109\f3
110.fl
111};\fP
112.br
113\f3
114.fl
115\fP
116.fi
117
118.LP
119.LP
120To use this policy, copy the text into a file called \f2jstatd.all.policy\fP and run the \f3jstatd\fP server as follows:
121.LP
122.nf
123\f3
124.fl
125jstatd \-J\-Djava.security.policy=jstatd.all.policy\fP
126.br
127\f3
128.fl
129\fP
130.fi
131
132.LP
133.LP
134For sites with more restrictive security practices, it is possible to use a custom policy file to limit access to specific trusted hosts or networks, though such techniques are subject to IP addreess spoofing attacks. If your security concerns cannot be addressed with a customized policy file, then the safest action is to not run the \f3jstatd\fP server and use the \f3jstat\fP and \f3jps\fP tools locally.
135.LP
136.SH "REMOTE INTERFACE"
137.LP
138.LP
139The interface exported by the \f3jstatd\fP process is proprietary and is guaranteed to change. Users and developers are discouraged from writing to this interface.
140.LP
141.SH "EXAMPLES"
142.LP
143.LP
144Here are some examples of starting \f3jstatd\fP. Note that the \f3jstatd\fP scripts automatically start the server in the background.
145.LP
146.SS
147Using Internal RMI Registry
148.LP
149.LP
150This example demonstrates starting \f3jstatd\fP with an internal RMI registry. This example assumes that no other server is bound to the default RMI Registry port (port 1099).
151.LP
152.nf
153\f3
154.fl
155jstatd \-J\-Djava.security.policy=all.policy
156.fl
157\fP
158.fi
159
160.LP
161.SS
162Using External RMI Registry
163.LP
164.LP
165This example demonstrates starting \f3jstatd\fP with a external RMI registry.
166.LP
167.nf
168\f3
169.fl
170rmiregistry&
171.fl
172jstatd \-J\-Djava.security.policy=all.policy
173.fl
174\fP
175.fi
176
177.LP
178.LP
179This example demonstrates starting \f3jstatd\fP with an external RMI registry server on port 2020.
180.LP
181.nf
182\f3
183.fl
184rmiregistry 2020&
185.fl
186jstatd \-J\-Djava.security.policy=all.policy \-p 2020
187.fl
188\fP
189.fi
190
191.LP
192.LP
193This example demonstrates starting \f3jstatd\fP with an external RMI registry on port 2020, bound to name AlternateJstatdServerName.
194.LP
195.nf
196\f3
197.fl
198rmiregistry 2020&
199.fl
200jstatd \-J\-Djava.security.policy=all.policy \-p 2020 \-n AlternateJstatdServerName
201.fl
202\fP
203.fi
204
205.LP
206.SS
207Inhibiting creation of an in\-process RMI registry
208.LP
209.LP
210This example demonstrates starting \f3jstatd\fP such that it will not create a RMI registry if one is not found. This example assumes an RMI registry is already running. If it is not, an appropriate error message is emitted.
211.LP
212.nf
213\f3
214.fl
215jstatd \-J\-Djava.security.policy=all.policy \-nr
216.fl
217\fP
218.fi
219
220.LP
221.SS
222Enabling RMI logging capabilities.
223.LP
224.LP
225This example demonstrates starting \f3jstatd\fP with RMI logging capabilities enabled. This technique is useful as a troubleshooting aid or for monitoring server activities.
226.LP
227.nf
228\f3
229.fl
230jstatd \-J\-Djava.security.policy=all.policy \-J\-Djava.rmi.server.logCalls=true
231.fl
232\fP
233.fi
234
235.LP
236.SH "SEE ALSO"
237.LP
238.RS 3
239.TP 2
240o
241java(1) \- the Java Application Launcher
242.TP 2
243o
244jps(1) \- the Java Process Status Application
245.TP 2
246o
247jstat(1) \- the Java Virtual Machine Statistics Monitoring Tool
248.TP 2
249o
250.na
251\f2rmiregistry\fP @
252.fi
253http://download.oracle.com/javase/7/docs/technotes/tools/index.html#rmi \- the Java Remote Object Registry
254.RE
255
256.LP
257
258