1jinfo(1) General Commands Manual jinfo(1)
2
3
4
6 jinfo - Configuration Info
7
9 jinfo [ option ] pid
10 jinfo [ option ] executable core
11 jinfo [ option ] [server-id@]remote-hostname-or-IP
12
13
15 option
16 Options are mutually exclusive. Option, if used, should follow imme‐
17 diately after the command name.
18
19 pid
20 process id for which the configuration info is to be printed. The
21 process must be a Java process. To get a list of Java processes run‐
22 ning on a machine, jps may be used.
23
24 executable
25 Java executable from which the core dump was produced.
26
27 core
28 core file for which the configuration info is to be printed.
29
30 remote-hostname-or-IP
31 remote debug server's (see jsadebugd) hostname or IP address.
32
33 server-id
34 optional unique id, if multiple debug servers are running on the
35 same remote host.
36
38 jinfo prints Java configuration information for a given Java process or
39 core file or a remote debug server. Configuration information includes
40 Java System properties and Java virtual machine command line flags. If
41 the given process is running on a 64-bit VM, you may need to specify
42 the -J-d64 option, e.g.:
43
44
45 jinfo -J-d64 -sysprops pid
46
47 NOTE - This utility is unsupported and may or may not be available in
48 future versions of the JDK. On Windows, jinfo only supports the -flag
49 option of a running process.
50
52 <no option>
53 prints both command line flags as well as System properties name,
54 value pairs.
55
56 -flag name
57 prints the name and value of the given command line flag.
58
59 -flag [+|-]name
60 enables or disables the given boolean command line flag.
61
62 -flag name=value
63 sets the given command line flag to the specified value.
64
65 -flags
66 prints command line flags passed to the JVM. pairs.
67
68 -sysprops
69 prints Java System properties as name, value pairs.
70
71 -h prints a help message
72
73 -help
74 prints a help message
75
77 * jps
78
79 * jsadebugd
80
81
82 05 Aug 2006 jinfo(1)