Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / lustre / doc / lctl.8
1 .TH lctl 1 "2003 Oct 8" Lustre "configuration utilities"
2 .SH NAME
3 lctl \- Low level Lustre filesystem configuration utility
4 .SH SYNOPSIS
5 .br
6 .B lctl
7 .br
8 .B lctl --device <devno> <command [args]>
9 .br
10 .SH DESCRIPTION
11 .B lctl
12 is used to directly control Lustre via an ioctl interface, allowing
13 various configuration, maintenance, and debugging features to be accessed.
14  
15 .B lctl
16 can be invoked in interactive mode by issuing lctl command. After that, commands are issued as below. The most common commands in lctl are
17 .B dl
18 ,
19 .B dk
20 ,
21 .B device 
22 ,
23 .B network 
24 .I <up/down>
25 ,
26 .B list_nids
27 ,
28 .B ping
29 .I nid
30 ,
31 .B help
32 ,
33 .B quit.
34
35 To get a complete listing of available commands, type
36 .B help
37 at the lctl prompt.  To get basic help on the meaning and syntax of a
38 command, type 
39 .B help 
40 .I command
41 .  Command completion is activated with the TAB key, and command history is available via the up- and down-arrow keys. 
42
43 For non-interactive use, one uses the second invocation, which runs command after connecting to the device. 
44
45 .SS Network Configuration
46 .TP
47 .BI network " <up/down>|<tcp/elan/myrinet>"
48 Start or stop LNET, or select a network type for other
49 .I lctl
50 LNET commands
51 .TP
52 .BI list_nids
53 Print all Network Identifiers on the local node. LNET must be running.
54 .TP
55 .BI which_nid " <nidlist>"
56 From a list of nids for a remote node, show which interface communication
57 will take place on.
58 .TP
59 .BI ping " <nid> "
60 Check LNET connectivity via an LNET ping. This will use the fabric
61 appropriate to the specified NID.
62 .TP
63 .BI interface_list 
64 Print the network interface information for a given 
65 .B network
66 type.
67 .TP
68 .BI peer_list 
69 Print the known peers for a given 
70 .B network
71 type.
72 .TP
73 .BI conn_list 
74 Print all the connected remote NIDs for a given
75 .B network
76 type.
77 .TP
78 .BI active_tx 
79 This command should print active transmits, and it is only used for elan network type.
80 .TP 
81 .BI route_list 
82 Print the complete routing table.
83 .PP
84 .SS Device Selection
85 .TP 
86 .BI device " <devname> " 
87 This will select the specified OBD device.  All other commands depend on the device being set. 
88 .TP 
89 .BI device_list 
90 Show all the local Lustre OBDs. AKA 
91 .B dl
92 .PP
93 .SS Device Operations
94 .TP 
95 .BI conf_param " <device> <parameter>"
96 Set a permanent configuration parameter for any device via the MGS.  This
97 command must be run on the MGS node. 
98 .TP 
99 .BI activate 
100 Reactivate an import after deactivating, below.
101 .TP 
102 .BI deactivate 
103 Deactivate an import, in particular meaning do not assign new file stripes
104 to an OSC.  This command should be used on the OSC in the MDT LOV
105 corresponding to a failed OST device, to prevent further attempts at
106 communication with the failed OST.
107 .TP 
108 .BI abort_recovery 
109 Abort the recovery process on a restarting MDT or OST device
110 .PP
111 .SS Virtual Block Device Operation
112 Lustre is able to emulate a virtual block device upon regular file. It is necessary to be used when you are trying to setup a swap space via file.
113 .TP
114 .BI blockdev_attach " <file name> <device node>"
115 Attach the lustre regular file to a block device. If the device node is not existent, lctl will create it \- it is recommended to create it by lctl since the emulator uses a dynamical major number.
116 .TP
117 .BI blockdev_detach " <device node>"
118 Detach the virtual block device.
119 .TP
120 .BI blockdev_info " <device node>"
121 Acquire which lustre file was attached to the device node.
122 .PP
123 .SS Debug
124 .TP 
125 .BI debug_daemon 
126 Start and stop the debug daemon, and control the output filename and size.
127 .TP 
128 .BI debug_kernel " [file] [raw]" 
129 Dump the kernel debug buffer to stdout or file.
130 .TP 
131 .BI debug_file " <input> [output]"
132 Convert kernel-dumped debug log from binary to plain text format.
133 .TP 
134 .BI clear 
135 Clear the kernel debug buffer.
136 .TP 
137 .BI mark " <text>" 
138 Insert marker text in the kernel debug buffer.
139 .TP 
140 .BI filter " <subsystem id/debug mask>" 
141 Filter kernel debug messages by subsystem or mask.
142 .TP 
143 .BI show " <subsystem id/debug mask>" 
144 Show specific type of messages.
145 .TP 
146 .BI debug_list " <subs/types>" 
147 List all the subsystem and debug types.
148 .TP
149 .BI modules " <path>" 
150 Provide gdb-friendly module information.
151
152 .SH OPTIONS
153 The following options can be used to invoke lctl. 
154 .TP
155 .B --device 
156 The device to be used for the operation. This can be specified by name or
157 number. See 
158 .B device_list
159 .TP
160 .B --ignore_errors | ignore_errors 
161 Ignore errors during script processing
162 .TP
163 .SH EXAMPLES
164 # lctl
165 .br
166 lctl > dl
167   0 UP mgc MGC192.168.0.20@tcp bfbb24e3-7deb-2ffa-eab0-44dffe00f692 5
168   1 UP ost OSS OSS_uuid 3
169   2 UP obdfilter testfs-OST0000 testfs-OST0000_UUID 3
170 .br
171 lctl > dk /tmp/log
172 Debug log: 87 lines, 87 kept, 0 dropped.
173 .br
174 lctl > quit
175 .PP
176 # lctl conf_param testfs-MDT0000 sys.timeout=40
177
178 .SH BUGS
179 Please report all bugs to Sun Microsystems, Inc. http://bugzilla.lustre.org/
180 .SH AVAILABILITY
181 .B lctl
182 is part of the 
183 .BR Lustre (7) 
184 filesystem package and is available from Sun Microsystems, Inc.
185 .br
186 http://www.sun.com/software/products/lustre/index.xml
187 .SH SEE ALSO
188 .BR Lustre (7),
189 .BR mkfs.lustre (8),
190 .BR mount.lustre (8),
191 .BR lctl (8),
192 .BR lfs (1)