]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8.in
ddf: implement remove_from_super
[thirdparty/mdadm.git] / mdadm.8.in
CommitLineData
52826846 1.\" -*- nroff -*-
e43d0cda
NB
2.\" Copyright Neil Brown and others.
3.\" This program is free software; you can redistribute it and/or modify
4.\" it under the terms of the GNU General Public License as published by
5.\" the Free Software Foundation; either version 2 of the License, or
6.\" (at your option) any later version.
7.\" See file COPYING in distribution for details.
972ee725 8.TH MDADM 8 "" v3.1.4
52826846 9.SH NAME
9a9dab36 10mdadm \- manage MD devices
cd29a5c8 11.I aka
93e790af 12Linux Software RAID
cd29a5c8 13
52826846
NB
14.SH SYNOPSIS
15
e0d19036 16.BI mdadm " [mode] <raiddevice> [options] <component-devices>"
52826846 17
2ae555c3 18.SH DESCRIPTION
52826846 19RAID devices are virtual devices created from two or more
e0fe762a 20real block devices. This allows multiple devices (typically disk
35cc5be4 21drives or partitions thereof) to be combined into a single device to
cd29a5c8 22hold (for example) a single filesystem.
2d465520 23Some RAID levels include redundancy and so can survive some degree of
cd29a5c8
NB
24device failure.
25
2d465520
NB
26Linux Software RAID devices are implemented through the md (Multiple
27Devices) device driver.
cd29a5c8
NB
28
29Currently, Linux supports
30.B LINEAR
31md devices,
32.B RAID0
33(striping),
34.B RAID1
35(mirroring),
d013a55e
NB
36.BR RAID4 ,
37.BR RAID5 ,
98c6faba 38.BR RAID6 ,
1a7dfc35 39.BR RAID10 ,
b5e64645 40.BR MULTIPATH ,
90c8d668 41.BR FAULTY ,
cd29a5c8 42and
90c8d668 43.BR CONTAINER .
d013a55e 44
a9d69660
NB
45.B MULTIPATH
46is not a Software RAID mechanism, but does involve
93e790af 47multiple devices:
d013a55e 48each device is a path to one common physical storage device.
9652457e
N
49New installations should not use md/multipath as it is not well
50supported and has no ongoing development. Use the Device Mapper based
51multipath-tools instead.
d013a55e 52
a9d69660
NB
53.B FAULTY
54is also not true RAID, and it only involves one device. It
b5e64645 55provides a layer over a true device that can be used to inject faults.
52826846 56
4cce4069 57.B CONTAINER
8fd8d9c4
N
58is different again. A
59.B CONTAINER
60is a collection of devices that are
90c8d668
N
61managed as a set. This is similar to the set of devices connected to
62a hardware RAID controller. The set of devices may contain a number
9652457e 63of different RAID arrays each utilising some (or all) of the blocks from a
90c8d668 64number of the devices in the set. For example, two devices in a 5-device set
9652457e 65might form a RAID1 using the whole devices. The remaining three might
90c8d668
N
66have a RAID5 over the first half of each device, and a RAID0 over the
67second half.
68
8fd8d9c4
N
69With a
70.BR CONTAINER ,
71there is one set of metadata that describes all of
72the arrays in the container. So when
73.I mdadm
74creates a
75.B CONTAINER
9652457e
N
76device, the device just represents the metadata. Other normal arrays (RAID1
77etc) can be created inside the container.
52826846
NB
78
79.SH MODES
8382f19b 80mdadm has several major modes of operation:
cd29a5c8
NB
81.TP
82.B Assemble
93e790af 83Assemble the components of a previously created
e0fe762a 84array into an active array. Components can be explicitly given
2ae555c3 85or can be searched for.
51ac42e3 86.I mdadm
cd29a5c8
NB
87checks that the components
88do form a bona fide array, and can, on request, fiddle superblock
89information so as to assemble a faulty array.
90
91.TP
92.B Build
e0fe762a 93Build an array that doesn't have per-device metadata (superblocks). For these
a9d69660
NB
94sorts of arrays,
95.I mdadm
96cannot differentiate between initial creation and subsequent assembly
97of an array. It also cannot perform any checks that appropriate
93e790af 98components have been requested. Because of this, the
a9d69660
NB
99.B Build
100mode should only be used together with a complete understanding of
101what you are doing.
cd29a5c8
NB
102
103.TP
104.B Create
e0fe762a
N
105Create a new array with per-device metadata (superblocks).
106Appropriate metadata is written to each device, and then the array
107comprising those devices is activated. A 'resync' process is started
108to make sure that the array is consistent (e.g. both sides of a mirror
109contain the same data) but the content of the device is left otherwise
110untouched.
111The array can be used as soon as it has been created. There is no
112need to wait for the initial resync to finish.
cd29a5c8 113
cd29a5c8
NB
114.TP
115.B "Follow or Monitor"
5787fa49 116Monitor one or more md devices and act on any state changes. This is
e0fe762a
N
117only meaningful for RAID1, 4, 5, 6, 10 or multipath arrays, as
118only these have interesting state. RAID0 or Linear never have
98c6faba 119missing, spare, or failed drives, so there is nothing to monitor.
5787fa49 120
dd0781e5
NB
121.TP
122.B "Grow"
123Grow (or shrink) an array, or otherwise reshape it in some way.
124Currently supported growth options including changing the active size
93e790af 125of component devices and changing the number of active devices in RAID
f24e2d6c
N
126levels 1/4/5/6, changing the RAID level between 1, 5, and 6, changing
127the chunk size and layout for RAID5 and RAID5, as well as adding or
128removing a write-intent bitmap.
cd29a5c8 129
8382f19b
NB
130.TP
131.B "Incremental Assembly"
132Add a single device to an appropriate array. If the addition of the
133device makes the array runnable, the array will be started.
134This provides a convenient interface to a
135.I hot-plug
136system. As each device is detected,
137.I mdadm
138has a chance to include it in some array as appropriate.
29ba4804
N
139Optionally, when the
140.I \-\-fail
141flag is passed in we will remove the device from any active array
142instead of adding it.
9652457e 143
8fd8d9c4
N
144If a
145.B CONTAINER
146is passed to
147.I mdadm
148in this mode, then any arrays within that container will be assembled
149and started.
8382f19b 150
2ae555c3
NB
151.TP
152.B Manage
153This is for doing things to specific components of an array such as
154adding new spares and removing faulty devices.
155
156.TP
157.B Misc
158This is an 'everything else' mode that supports operations on active
159arrays, operations on component devices such as erasing old superblocks, and
160information gathering operations.
e43d0cda
NB
161.\"This mode allows operations on independent devices such as examine MD
162.\"superblocks, erasing old superblocks and stopping active arrays.
2ae555c3 163
1f48664b
NB
164.TP
165.B Auto-detect
166This mode does not act on a specific device or array, but rather it
167requests the Linux Kernel to activate any auto-detected arrays.
52826846
NB
168.SH OPTIONS
169
2ae555c3 170.SH Options for selecting a mode are:
52826846 171
cd29a5c8 172.TP
7e23fc43 173.BR \-A ", " \-\-assemble
2d465520 174Assemble a pre-existing array.
52826846 175
cd29a5c8 176.TP
7e23fc43 177.BR \-B ", " \-\-build
cd29a5c8 178Build a legacy array without superblocks.
52826846 179
cd29a5c8 180.TP
7e23fc43 181.BR \-C ", " \-\-create
cd29a5c8 182Create a new array.
52826846 183
cd29a5c8 184.TP
7e23fc43 185.BR \-F ", " \-\-follow ", " \-\-monitor
cd29a5c8
NB
186Select
187.B Monitor
188mode.
52826846 189
dd0781e5 190.TP
7e23fc43 191.BR \-G ", " \-\-grow
dd0781e5 192Change the size or shape of an active array.
8382f19b
NB
193
194.TP
1f48664b 195.BR \-I ", " \-\-incremental
29ba4804 196Add/remove a single device to/from an appropriate array, and possibly start the array.
8382f19b 197
1f48664b
NB
198.TP
199.B \-\-auto-detect
200Request that the kernel starts any auto-detected arrays. This can only
201work if
202.I md
203is compiled into the kernel \(em not if it is a module.
204Arrays can be auto-detected by the kernel if all the components are in
205primary MS-DOS partitions with partition type
e0fe762a
N
206.BR FD ,
207and all use v0.90 metadata.
1f48664b
NB
208In-kernel autodetect is not recommended for new installations. Using
209.I mdadm
210to detect and assemble arrays \(em possibly in an
211.I initrd
212\(em is substantially more flexible and should be preferred.
213
2ae555c3
NB
214.P
215If a device is given before any options, or if the first option is
7e23fc43
PS
216.BR \-\-add ,
217.BR \-\-fail ,
2ae555c3 218or
7e23fc43 219.BR \-\-remove ,
e0fe762a 220then the MANAGE mode is assumed.
2ae555c3
NB
221Anything other than these will cause the
222.B Misc
223mode to be assumed.
dd0781e5 224
2ae555c3 225.SH Options that are not mode-specific are:
e793c2e5 226
cd29a5c8 227.TP
7e23fc43 228.BR \-h ", " \-\-help
a9d69660 229Display general help message or, after one of the above options, a
93e790af 230mode-specific help message.
56eedc1a
NB
231
232.TP
7e23fc43 233.B \-\-help\-options
56eedc1a
NB
234Display more detailed help about command line parsing and some commonly
235used options.
52826846 236
cd29a5c8 237.TP
7e23fc43 238.BR \-V ", " \-\-version
9a9dab36 239Print version information for mdadm.
52826846 240
cd29a5c8 241.TP
7e23fc43 242.BR \-v ", " \-\-verbose
22892d56
NB
243Be more verbose about what is happening. This can be used twice to be
244extra-verbose.
a9d69660 245The extra verbosity currently only affects
7e23fc43 246.B \-\-detail \-\-scan
22892d56 247and
7e23fc43 248.BR "\-\-examine \-\-scan" .
52826846 249
dab6685f 250.TP
7e23fc43 251.BR \-q ", " \-\-quiet
dab6685f 252Avoid printing purely informative messages. With this,
51ac42e3 253.I mdadm
dab6685f
NB
254will be silent unless there is something really important to report.
255
e0d19036 256.TP
7e23fc43 257.BR \-f ", " \-\-force
93e790af 258Be more forceful about certain operations. See the various modes for
e0d19036
NB
259the exact meaning of this option in different contexts.
260
261.TP
7e23fc43 262.BR \-c ", " \-\-config=
2ae555c3
NB
263Specify the config file. Default is to use
264.BR /etc/mdadm.conf ,
93e790af 265or if that is missing then
2ae555c3 266.BR /etc/mdadm/mdadm.conf .
5787fa49 267If the config file given is
93e790af 268.B "partitions"
5787fa49
NB
269then nothing will be read, but
270.I mdadm
271will act as though the config file contained exactly
8fd8d9c4 272.B "DEVICE partitions containers"
5787fa49
NB
273and will read
274.B /proc/partitions
8fd8d9c4
N
275to find a list of devices to scan, and
276.B /proc/mdstat
277to find a list of containers to examine.
d013a55e 278If the word
93e790af 279.B "none"
d013a55e
NB
280is given for the config file, then
281.I mdadm
282will act as though the config file were empty.
e0d19036
NB
283
284.TP
7e23fc43 285.BR \-s ", " \-\-scan
93e790af 286Scan config file or
e0d19036
NB
287.B /proc/mdstat
288for missing information.
289In general, this option gives
51ac42e3 290.I mdadm
93e790af
SW
291permission to get any missing information (like component devices,
292array devices, array identities, and alert destination) from the
293configuration file (see previous option);
294one exception is MISC mode when using
7e23fc43 295.B \-\-detail
e0d19036 296or
93e790af 297.B \-\-stop,
e0d19036 298in which case
7e23fc43 299.B \-\-scan
e0d19036
NB
300says to get a list of array devices from
301.BR /proc/mdstat .
302
570c0542 303.TP
d16c7af6 304.BR \-e ", " \-\-metadata=
e0fe762a 305Declare the style of RAID metadata (superblock) to be used. The
26f467a9 306default is {DEFAULT_METADATA} for
7e23fc43 307.BR \-\-create ,
53e8b987 308and to guess for other operations.
2790ffe3
GB
309The default can be overridden by setting the
310.B metadata
311value for the
312.B CREATE
313keyword in
314.BR mdadm.conf .
570c0542
NB
315
316Options are:
317.RS
26f467a9 318.ie '{DEFAULT_METADATA}'0.90'
319.IP "0, 0.90, default"
320.el
7d5c3964 321.IP "0, 0.90"
26f467a9 322..
570c0542 323Use the original 0.90 format superblock. This format limits arrays to
93e790af 32428 component devices and limits component devices of levels 1 and
cd19c0cf
JR
325greater to 2 terabytes. It is also possible for there to be confusion
326about whether the superblock applies to a whole device or just the
327last partition, if that partition starts on a 64K boundary.
26f467a9 328.ie '{DEFAULT_METADATA}'0.90'
329.IP "1, 1.0, 1.1, 1.2"
330.el
7d5c3964 331.IP "1, 1.0, 1.1, 1.2 default"
26f467a9 332..
cd19c0cf
JR
333Use the new version-1 format superblock. This has fewer restrictions.
334It can easily be moved between hosts with different endian-ness, and a
335recovery operation can be checkpointed and restarted. The different
336sub-versions store the superblock at different locations on the
337device, either at the end (for 1.0), at the start (for 1.1) or 4K from
338the start (for 1.2). "1" is equivalent to "1.0".
26f467a9 339'if '{DEFAULT_METADATA}'1.2' "default" is equivalent to "1.2".
8fd8d9c4 340.IP ddf
e0fe762a
N
341Use the "Industry Standard" DDF (Disk Data Format) format defined by
342SNIA.
343When creating a DDF array a
8fd8d9c4
N
344.B CONTAINER
345will be created, and normal arrays can be created in that container.
346.IP imsm
4cce4069 347Use the Intel(R) Matrix Storage Manager metadata format. This creates a
8fd8d9c4 348.B CONTAINER
4cce4069
DW
349which is managed in a similar manner to DDF, and is supported by an
350option-rom on some platforms:
351.IP
352.B http://www.intel.com/design/chipsets/matrixstorage_sb.htm
353.PP
570c0542
NB
354.RE
355
41a3b72a 356.TP
7e23fc43 357.B \-\-homehost=
35cc5be4 358This will override any
41a3b72a 359.B HOMEHOST
93e790af 360setting in the config file and provides the identity of the host which
41a3b72a
NB
361should be considered the home for any arrays.
362
363When creating an array, the
364.B homehost
e0fe762a 365will be recorded in the metadata. For version-1 superblocks, it will
93e790af 366be prefixed to the array name. For version-0.90 superblocks, part of
41a3b72a
NB
367the SHA1 hash of the hostname will be stored in the later half of the
368UUID.
369
370When reporting information about an array, any array which is tagged
371for the given homehost will be reported as such.
372
373When using Auto-Assemble, only arrays tagged for the given homehost
0ac91628 374will be allowed to use 'local' names (i.e. not ending in '_' followed
e0fe762a
N
375by a digit string). See below under
376.BR "Auto Assembly" .
41a3b72a 377
2ae555c3
NB
378.SH For create, build, or grow:
379
380.TP
7e23fc43 381.BR \-n ", " \-\-raid\-devices=
2ae555c3
NB
382Specify the number of active devices in the array. This, plus the
383number of spare devices (see below) must equal the number of
384.I component-devices
385(including "\fBmissing\fP" devices)
386that are listed on the command line for
e0fe762a 387.BR \-\-create .
2ae555c3
NB
388Setting a value of 1 is probably
389a mistake and so requires that
7e23fc43 390.B \-\-force
2ae555c3 391be specified first. A value of 1 will then be allowed for linear,
e0fe762a 392multipath, RAID0 and RAID1. It is never allowed for RAID4, RAID5 or RAID6.
2ae555c3
NB
393.br
394This number can only be changed using
7e23fc43 395.B \-\-grow
e0fe762a
N
396for RAID1, RAID4, RAID5 and RAID6 arrays, and only on kernels which provide
397the necessary support.
2ae555c3
NB
398
399.TP
7e23fc43 400.BR \-x ", " \-\-spare\-devices=
2ae555c3
NB
401Specify the number of spare (eXtra) devices in the initial array.
402Spares can also be added
403and removed later. The number of component devices listed
e0fe762a 404on the command line must equal the number of RAID devices plus the
2ae555c3
NB
405number of spare devices.
406
2ae555c3 407.TP
7e23fc43 408.BR \-z ", " \-\-size=
e0fe762a 409Amount (in Kibibytes) of space to use from each drive in RAID levels 1/4/5/6.
2ae555c3
NB
410This must be a multiple of the chunk size, and must leave about 128Kb
411of space at the end of the drive for the RAID superblock.
412If this is not specified
413(as it normally is not) the smallest drive (or partition) sets the
414size, though if there is a variance among the drives of greater than 1%, a warning is
415issued.
416
417This value can be set with
7e23fc43 418.B \-\-grow
e0fe762a 419for RAID level 1/4/5/6. If the array was created with a size smaller
2ae555c3
NB
420than the currently active drives, the extra space can be accessed
421using
7e23fc43 422.BR \-\-grow .
2ae555c3
NB
423The size can be given as
424.B max
425which means to choose the largest size that fits on all current drives.
52826846 426
66dedd88
N
427Before reducing the size of the array (with
428.BR "\-\-grow \-\-size=" )
429you should make sure that space isn't needed. If the device holds a
430filesystem, you would need to resize the filesystem to use less space.
431
432After reducing the array size you should check that the data stored in
433the device is still available. If the device holds a filesystem, then
434an 'fsck' of the filesystem is a minimum requirement. If there are
435problems the array can be made bigger again with no loss with another
436.B "\-\-grow \-\-size="
437command.
438
8fd8d9c4
N
439This value can not be used with
440.B CONTAINER
441metadata such as DDF and IMSM.
442
cd29a5c8 443.TP
7e23fc43 444.BR \-c ", " \-\-chunk=
5f175898
N
445Specify chunk size of kibibytes. The default when creating an
446array is 512KB. To ensure compatibility with earlier versions, the
447default when Building and array with no persistent metadata is 64KB.
e0fe762a 448This is only meaningful for RAID0, RAID4, RAID5, RAID6, and RAID10.
52826846 449
cd29a5c8 450.TP
7e23fc43 451.BR \-\-rounding=
e0fe762a
N
452Specify rounding factor for a Linear array. The size of each
453component will be rounded down to a multiple of this size.
454This is a synonym for
455.B \-\-chunk
456but highlights the different meaning for Linear as compared to other
5f175898
N
457RAID levels. The default is 64K if a kernel earlier than 2.6.16 is in
458use, and is 0K (i.e. no rounding) in later kernels.
52826846 459
cd29a5c8 460.TP
7e23fc43 461.BR \-l ", " \-\-level=
e0fe762a 462Set RAID level. When used with
7e23fc43 463.BR \-\-create ,
98c6faba 464options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
8fd8d9c4
N
465raid5, 5, raid6, 6, raid10, 10, multipath, mp, faulty, container.
466Obviously some of these are synonymous.
467
468When a
469.B CONTAINER
470metadata type is requested, only the
471.B container
472level is permitted, and it does not need to be explicitly given.
aa88f531
NB
473
474When used with
7e23fc43 475.BR \-\-build ,
a9d69660 476only linear, stripe, raid0, 0, raid1, multipath, mp, and faulty are valid.
52826846 477
fd547b50
N
478Can be used with
479.B \-\-grow
480to change the RAID level in some cases. See LEVEL CHANGES below.
2ae555c3 481
cd29a5c8 482.TP
7e23fc43 483.BR \-p ", " \-\-layout=
f24e2d6c
N
484This option configures the fine details of data layout for RAID5, RAID6,
485and RAID10 arrays, and controls the failure modes for
1a7dfc35
NB
486.IR faulty .
487
e0fe762a 488The layout of the RAID5 parity block can be one of
7e23fc43
PS
489.BR left\-asymmetric ,
490.BR left\-symmetric ,
491.BR right\-asymmetric ,
492.BR right\-symmetric ,
53e8b987
PS
493.BR la ", " ra ", " ls ", " rs .
494The default is
7e23fc43 495.BR left\-symmetric .
52826846 496
cd19c0cf 497It is also possible to cause RAID5 to use a RAID4-like layout by
e0fe762a
N
498choosing
499.BR parity\-first ,
500or
501.BR parity\-last .
502
503Finally for RAID5 there are DDF\-compatible layouts,
504.BR ddf\-zero\-restart ,
505.BR ddf\-N\-restart ,
506and
507.BR ddf\-N\-continue .
508
509These same layouts are available for RAID6. There are also 4 layouts
510that will provide an intermediate stage for converting between RAID5
511and RAID6. These provide a layout which is identical to the
512corresponding RAID5 layout on the first N\-1 devices, and has the 'Q'
513syndrome (the second 'parity' block used by RAID6) on the last device.
514These layouts are:
515.BR left\-symmetric\-6 ,
516.BR right\-symmetric\-6 ,
517.BR left\-asymmetric\-6 ,
518.BR right\-asymmetric\-6 ,
519and
10adfe9a 520.BR parity\-first\-6 .
e0fe762a 521
93e790af
SW
522When setting the failure mode for level
523.I faulty,
1a7dfc35 524the options are:
7e23fc43
PS
525.BR write\-transient ", " wt ,
526.BR read\-transient ", " rt ,
527.BR write\-persistent ", " wp ,
528.BR read\-persistent ", " rp ,
529.BR write\-all ,
530.BR read\-fixable ", " rf ,
53e8b987 531.BR clear ", " flush ", " none .
b5e64645 532
93e790af 533Each failure mode can be followed by a number, which is used as a period
b5e64645
NB
534between fault generation. Without a number, the fault is generated
535once on the first relevant request. With a number, the fault will be
93e790af 536generated after that many requests, and will continue to be generated
b5e64645
NB
537every time the period elapses.
538
539Multiple failure modes can be current simultaneously by using the
7e23fc43 540.B \-\-grow
53e8b987 541option to set subsequent failure modes.
b5e64645
NB
542
543"clear" or "none" will remove any pending or periodic failure modes,
2ae555c3 544and "flush" will clear any persistent faults.
b5e64645 545
6f9a21a7 546Finally, the layout options for RAID10 are one of 'n', 'o' or 'f' followed
93e790af 547by a small number. The default is 'n2'. The supported options are:
1a7dfc35 548
93e790af 549.I 'n'
e0fe762a 550signals 'near' copies. Multiple copies of one data block are at
b578481c
NB
551similar offsets in different devices.
552
93e790af 553.I 'o'
b578481c
NB
554signals 'offset' copies. Rather than the chunks being duplicated
555within a stripe, whole stripes are duplicated but are rotated by one
556device so duplicate blocks are on different devices. Thus subsequent
557copies of a block are in the next drive, and are one chunk further
558down.
559
93e790af 560.I 'f'
1a7dfc35 561signals 'far' copies
93e790af 562(multiple copies have very different offsets).
e0fe762a 563See md(4) for more detail about 'near', 'offset', and 'far'.
1a7dfc35
NB
564
565The number is the number of copies of each datablock. 2 is normal, 3
566can be useful. This number can be at most equal to the number of
567devices in the array. It does not need to divide evenly into that
568number (e.g. it is perfectly legal to have an 'n2' layout for an array
569with an odd number of devices).
570
f24e2d6c
N
571When an array is converted between RAID5 and RAID6 an intermediate
572RAID6 layout is used in which the second parity block (Q) is always on
573the last device. To convert a RAID5 to RAID6 and leave it in this new
574layout (which does not require re-striping) use
575.BR \-\-layout=preserve .
576This will try to avoid any restriping.
577
578The converse of this is
579.B \-\-layout=normalise
580which will change a non-standard RAID6 layout into a more standard
581arrangement.
582
cd29a5c8 583.TP
7e23fc43 584.BR \-\-parity=
53e8b987 585same as
7e23fc43 586.B \-\-layout
53e8b987 587(thus explaining the p of
7e23fc43 588.BR \-p ).
52826846 589
e793c2e5 590.TP
7e23fc43 591.BR \-b ", " \-\-bitmap=
e793c2e5 592Specify a file to store a write-intent bitmap in. The file should not
53e8b987 593exist unless
7e23fc43 594.B \-\-force
53e8b987 595is also given. The same file should be provided
2ae555c3 596when assembling the array. If the word
93e790af 597.B "internal"
2ae555c3
NB
598is given, then the bitmap is stored with the metadata on the array,
599and so is replicated on all devices. If the word
93e790af 600.B "none"
2ae555c3 601is given with
7e23fc43 602.B \-\-grow
2ae555c3 603mode, then any bitmap that is present is removed.
e793c2e5 604
2ae555c3
NB
605To help catch typing errors, the filename must contain at least one
606slash ('/') if it is a real file (not 'internal' or 'none').
607
608Note: external bitmaps are only known to work on ext2 and ext3.
609Storing bitmap files on other filesystems may result in serious problems.
e793c2e5 610
cd29a5c8 611.TP
7e23fc43 612.BR \-\-bitmap\-chunk=
e0fe762a 613Set the chunksize of the bitmap. Each bit corresponds to that many
1bfdbe01
NB
614Kilobytes of storage.
615When using a file based bitmap, the default is to use the smallest
93e790af 616size that is at-least 4 and requires no more than 2^21 chunks.
2ae555c3
NB
617When using an
618.B internal
b8ab2a50
N
619bitmap, the chunksize defaults to 64Meg, or larger if necessary to
620fit the bitmap into the available space.
5787fa49 621
cd29a5c8 622.TP
7e23fc43 623.BR \-W ", " \-\-write\-mostly
e0fe762a 624subsequent devices listed in a
7e23fc43
PS
625.BR \-\-build ,
626.BR \-\-create ,
2ae555c3 627or
7e23fc43 628.B \-\-add
2ae555c3
NB
629command will be flagged as 'write-mostly'. This is valid for RAID1
630only and means that the 'md' driver will avoid reading from these
631devices if at all possible. This can be useful if mirroring over a
632slow link.
52826846 633
2ae555c3 634.TP
7e23fc43 635.BR \-\-write\-behind=
2ae555c3 636Specify that write-behind mode should be enabled (valid for RAID1
e0fe762a
N
637only). If an argument is specified, it will set the maximum number
638of outstanding writes allowed. The default value is 256.
2ae555c3
NB
639A write-intent bitmap is required in order to use write-behind
640mode, and write-behind is only attempted on drives marked as
641.IR write-mostly .
dd0781e5
NB
642
643.TP
7e23fc43 644.BR \-\-assume\-clean
dd0781e5
NB
645Tell
646.I mdadm
47d79ef8
NB
647that the array pre-existed and is known to be clean. It can be useful
648when trying to recover from a major failure as you can be sure that no
649data will be affected unless you actually write to the array. It can
650also be used when creating a RAID1 or RAID10 if you want to avoid the
b3f1c093 651initial resync, however this practice \(em while normally safe \(em is not
e0fe762a 652recommended. Use this only if you really know what you are doing.
6acad481
ME
653.IP
654When the devices that will be part of a new array were filled
655with zeros before creation the operator knows the array is
656actually clean. If that is the case, such as after running
657badblocks, this argument can be used to tell mdadm the
658facts the operator knows.
dd0781e5 659
2ae555c3 660.TP
7e23fc43 661.BR \-\-backup\-file=
53e8b987 662This is needed when
7e23fc43 663.B \-\-grow
cd19c0cf
JR
664is used to increase the number of raid-devices in a RAID5 or RAID6 if
665there are no spare devices available, or to shrink, change RAID level
666or layout. See the GROW MODE section below on RAID\-DEVICES CHANGES.
667The file must be stored on a separate device, not on the RAID array
668being reshaped.
2ae555c3 669
84e11361
N
670.TP
671.BR \-\-array-size= ", " \-Z
c870b7dd
N
672This is only meaningful with
673.B \-\-grow
674and its effect is not persistent: when the array is stopped an
675restarted the default array size will be restored.
84e11361 676
c870b7dd
N
677Setting the array-size causes the array to appear smaller to programs
678that access the data. This is particularly needed before reshaping an
679array so that it will be smaller. As the reshape is not reversible,
680but setting the size with
681.B \-\-array-size
682is, it is required that the array size is reduced as appropriate
683before the number of devices in the array is reduced.
84e11361
N
684
685A value of
686.B max
687restores the apparent size of the array to be whatever the real
688amount of available space is.
689
66dedd88
N
690Before reducing the size of the array you should make sure that space
691isn't needed. If the device holds a filesystem, you would need to
692resize the filesystem to use less space.
693
694After reducing the array size you should check that the data stored in
695the device is still available. If the device holds a filesystem, then
696an 'fsck' of the filesystem is a minimum requirement. If there are
697problems the array can be made bigger again with no loss with another
698.B "\-\-grow \-\-array\-size="
699command.
700
947fd4dd 701.TP
7e23fc43 702.BR \-N ", " \-\-name=
947fd4dd
NB
703Set a
704.B name
705for the array. This is currently only effective when creating an
e0fe762a
N
706array with a version-1 superblock, or an array in a DDF container.
707The name is a simple textual string that can be used to identify array
708components when assembling. If name is needed but not specified, it
709is taken from the basename of the device that is being created.
710e.g. when creating
711.I /dev/md/home
712the
713.B name
714will default to
715.IR home .
947fd4dd 716
dd0781e5 717.TP
7e23fc43 718.BR \-R ", " \-\-run
dd0781e5
NB
719Insist that
720.I mdadm
721run the array, even if some of the components
722appear to be active in another array or filesystem. Normally
723.I mdadm
724will ask for confirmation before including such components in an
725array. This option causes that question to be suppressed.
726
727.TP
7e23fc43 728.BR \-f ", " \-\-force
dd0781e5
NB
729Insist that
730.I mdadm
731accept the geometry and layout specified without question. Normally
732.I mdadm
733will not allow creation of an array with only one device, and will try
e0fe762a 734to create a RAID5 array with one missing drive (as this makes the
dd0781e5 735initial resync work faster). With
7e23fc43 736.BR \-\-force ,
dd0781e5
NB
737.I mdadm
738will not try to be so clever.
739
740.TP
257c1dc2
N
741.BR \-a ", " "\-\-auto{=yes,md,mdp,part,p}{NN}"
742Instruct mdadm how to create the device file if needed, possibly allocating
48f7b27a 743an unused minor number. "md" causes a non-partitionable array
257c1dc2
N
744to be used (though since Linux 2.6.28, these array devices are in fact
745partitionable). "mdp", "part" or "p" causes a partitionable array (2.6 and
2ae555c3 746later) to be used. "yes" requires the named md device to have
f9c25f1d 747a 'standard' format, and the type and minor number will be determined
257c1dc2
N
748from this. With mdadm 3.0, device creation is normally left up to
749.I udev
750so this option is unlikely to be needed.
751See DEVICE NAMES below.
48f7b27a 752
a9d69660 753The argument can also come immediately after
7e23fc43 754"\-a". e.g. "\-ap".
dd0781e5 755
53e8b987 756If
7e23fc43 757.B \-\-auto
53e8b987 758is not given on the command line or in the config file, then
75723446 759the default will be
7e23fc43 760.BR \-\-auto=yes .
75723446 761
1337546d 762If
7e23fc43 763.B \-\-scan
1337546d
NB
764is also given, then any
765.I auto=
35cc5be4 766entries in the config file will override the
7e23fc43 767.B \-\-auto
1337546d
NB
768instruction given on the command line.
769
dd0781e5
NB
770For partitionable arrays,
771.I mdadm
772will create the device file for the whole array and for the first 4
773partitions. A different number of partitions can be specified at the
774end of this option (e.g.
7e23fc43 775.BR \-\-auto=p7 ).
2ae555c3 776If the device name ends with a digit, the partition names add a 'p',
e0fe762a
N
777and a number, e.g.
778.IR /dev/md/home1p3 .
779If there is no trailing digit, then the partition names just have a
780number added, e.g.
781.IR /dev/md/scratch3 .
dd0781e5 782
48f7b27a
NB
783If the md device name is in a 'standard' format as described in DEVICE
784NAMES, then it will be created, if necessary, with the appropriate
e0fe762a
N
785device number based on that name. If the device name is not in one of these
786formats, then a unused device number will be allocated. The device
48f7b27a
NB
787number will be considered unused if there is no active array for that
788number, and there is no entry in /dev for that number and with a
e0fe762a 789non-standard name. Names that are not in 'standard' format are only
8fd8d9c4
N
790allowed in "/dev/md/".
791
f24e2d6c 792.ig XX
e0fe762a
N
793.\".TP
794.\".BR \-\-symlink = no
795.\"Normally when
796.\".B \-\-auto
797.\"causes
798.\".I mdadm
799.\"to create devices in
800.\".B /dev/md/
801.\"it will also create symlinks from
802.\".B /dev/
803.\"with names starting with
804.\".B md
805.\"or
806.\".BR md_ .
807.\"Use
808.\".B \-\-symlink=no
809.\"to suppress this, or
810.\".B \-\-symlink=yes
811.\"to enforce this even if it is suppressing
812.\".IR mdadm.conf .
813.\"
f24e2d6c 814.XX
38098016 815
52826846
NB
816.SH For assemble:
817
cd29a5c8 818.TP
7e23fc43 819.BR \-u ", " \-\-uuid=
e0fe762a 820uuid of array to assemble. Devices which don't have this uuid are
cd29a5c8
NB
821excluded
822
823.TP
7e23fc43 824.BR \-m ", " \-\-super\-minor=
cd29a5c8
NB
825Minor number of device that array was created for. Devices which
826don't have this minor number are excluded. If you create an array as
2d465520 827/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
828the array is later assembled as /dev/md2.
829
d013a55e 830Giving the literal word "dev" for
7e23fc43 831.B \-\-super\-minor
d013a55e
NB
832will cause
833.I mdadm
834to use the minor number of the md device that is being assembled.
835e.g. when assembling
836.BR /dev/md0 ,
51ac42e3 837.B \-\-super\-minor=dev
d013a55e
NB
838will look for super blocks with a minor number of 0.
839
e0fe762a
N
840.B \-\-super\-minor
841is only relevant for v0.90 metadata, and should not normally be used.
842Using
843.B \-\-uuid
844is much safer.
845
947fd4dd 846.TP
7e23fc43 847.BR \-N ", " \-\-name=
947fd4dd 848Specify the name of the array to assemble. This must be the name
624920bb 849that was specified when creating the array. It must either match
93e790af 850the name stored in the superblock exactly, or it must match
41a3b72a 851with the current
624920bb 852.I homehost
93e790af 853prefixed to the start of the given name.
947fd4dd 854
cd29a5c8 855.TP
7e23fc43 856.BR \-f ", " \-\-force
e0fe762a
N
857Assemble the array even if the metadata on some devices appears to be
858out-of-date. If
859.I mdadm
860cannot find enough working devices to start the array, but can find
861some devices that are recorded as having failed, then it will mark
862those devices as working so that the array can be started.
863An array which requires
864.B \-\-force
865to be started may contain data corruption. Use it carefully.
52826846 866
cd29a5c8 867.TP
7e23fc43 868.BR \-R ", " \-\-run
b8a8ccf9
NB
869Attempt to start the array even if fewer drives were given than were
870present last time the array was active. Normally if not all the
871expected drives are found and
7e23fc43 872.B \-\-scan
cd29a5c8
NB
873is not used, then the array will be assembled but not started.
874With
7e23fc43 875.B \-\-run
cd29a5c8 876an attempt will be made to start it anyway.
52826846 877
b8a8ccf9 878.TP
7e23fc43 879.B \-\-no\-degraded
b8a8ccf9 880This is the reverse of
7e23fc43 881.B \-\-run
93e790af 882in that it inhibits the startup of array unless all expected drives
b8a8ccf9 883are present. This is only needed with
93e790af
SW
884.B \-\-scan,
885and can be used if the physical connections to devices are
b8a8ccf9
NB
886not as reliable as you would like.
887
dd0781e5 888.TP
7e23fc43 889.BR \-a ", " "\-\-auto{=no,yes,md,mdp,part}"
dd0781e5
NB
890See this option under Create and Build options.
891
e793c2e5 892.TP
7e23fc43 893.BR \-b ", " \-\-bitmap=
2ae555c3
NB
894Specify the bitmap file that was given when the array was created. If
895an array has an
896.B internal
897bitmap, there is no need to specify this when assembling the array.
898
899.TP
7e23fc43 900.BR \-\-backup\-file=
2ae555c3 901If
7e23fc43 902.B \-\-backup\-file
cd19c0cf
JR
903was used when requesting a grow, shrink, RAID level change or other
904reshape, and the system crashed during the critical section, then the
905same
7e23fc43 906.B \-\-backup\-file
53e8b987 907must be presented to
7e23fc43 908.B \-\-assemble
cd19c0cf
JR
909to allow possibly corrupted data to be restored, and the reshape
910to be completed.
e793c2e5 911
5787fa49 912.TP
7e23fc43 913.BR \-U ", " \-\-update=
5787fa49 914Update the superblock on each device while assembling the array. The
feb716e9
NB
915argument given to this flag can be one of
916.BR sparc2.2 ,
917.BR summaries ,
7d99579f 918.BR uuid ,
c4f12c13 919.BR name ,
0237e0ca 920.BR homehost ,
e5329c37 921.BR resync ,
586ed405 922.BR byteorder ,
bee8ec56 923.BR devicesize ,
1f9476aa 924.BR no\-bitmap ,
5787fa49 925or
7e23fc43 926.BR super\-minor .
5787fa49
NB
927
928The
929.B sparc2.2
7d99579f 930option will adjust the superblock of an array what was created on a Sparc
5787fa49
NB
931machine running a patched 2.2 Linux kernel. This kernel got the
932alignment of part of the superblock wrong. You can use the
7e23fc43 933.B "\-\-examine \-\-sparc2.2"
5787fa49
NB
934option to
935.I mdadm
936to see what effect this would have.
937
938The
7e23fc43 939.B super\-minor
5787fa49 940option will update the
2ae555c3 941.B "preferred minor"
5787fa49 942field on each superblock to match the minor number of the array being
45c073c9
NB
943assembled.
944This can be useful if
7e23fc43 945.B \-\-examine
45c073c9 946reports a different "Preferred Minor" to
7e23fc43 947.BR \-\-detail .
45c073c9 948In some cases this update will be performed automatically
e0fe762a 949by the kernel driver. In particular the update happens automatically
45c073c9
NB
950at the first write to an array with redundancy (RAID level 1 or
951greater) on a 2.6 (or later) kernel.
5787fa49 952
7d99579f
NB
953The
954.B uuid
955option will change the uuid of the array. If a UUID is given with the
7e23fc43 956.B \-\-uuid
53e8b987 957option that UUID will be used as a new UUID and will
7d99579f
NB
958.B NOT
959be used to help identify the devices in the array.
53e8b987 960If no
7e23fc43 961.B \-\-uuid
53e8b987 962is given, a random UUID is chosen.
7d99579f 963
c4f12c13
NB
964The
965.B name
966option will change the
967.I name
968of the array as stored in the superblock. This is only supported for
969version-1 superblocks.
970
0237e0ca
NB
971The
972.B homehost
973option will change the
974.I homehost
975as recorded in the superblock. For version-0 superblocks, this is the
976same as updating the UUID.
977For version-1 superblocks, this involves updating the name.
978
e5329c37
NB
979The
980.B resync
981option will cause the array to be marked
982.I dirty
e0fe762a
N
983meaning that any redundancy in the array (e.g. parity for RAID5,
984copies for RAID1) may be incorrect. This will cause the RAID system
e5329c37
NB
985to perform a "resync" pass to make sure that all redundant information
986is correct.
987
586ed405
NB
988The
989.B byteorder
990option allows arrays to be moved between machines with different
991byte-order.
2ae555c3 992When assembling such an array for the first time after a move, giving
7e23fc43 993.B "\-\-update=byteorder"
586ed405
NB
994will cause
995.I mdadm
996to expect superblocks to have their byteorder reversed, and will
997correct that order before assembling the array. This is only valid
2ae555c3 998with original (Version 0.90) superblocks.
586ed405 999
feb716e9
NB
1000The
1001.B summaries
e0fe762a 1002option will correct the summaries in the superblock. That is the
feb716e9 1003counts of total, working, active, failed, and spare devices.
5787fa49 1004
bee8ec56
NB
1005The
1006.B devicesize
1f9476aa 1007option will rarely be of use. It applies to version 1.1 and 1.2 metadata
bee8ec56
NB
1008only (where the metadata is at the start of the device) and is only
1009useful when the component device has changed size (typically become
1010larger). The version 1 metadata records the amount of the device that
1011can be used to store data, so if a device in a version 1.1 or 1.2
1012array becomes larger, the metadata will still be visible, but the
1013extra space will not. In this case it might be useful to assemble the
1014array with
7e23fc43 1015.BR \-\-update=devicesize .
bee8ec56
NB
1016This will cause
1017.I mdadm
1018to determine the maximum usable amount of space on each device and
1019update the relevant field in the metadata.
1020
1f9476aa
N
1021The
1022.B no\-bitmap
1023option can be used when an array has an internal bitmap which is
1024corrupt in some way so that assembling the array normally fails. It
1025will cause any internal bitmap to be ignored.
1026
d1302dd8 1027.ig
41a3b72a 1028.TP
7e23fc43 1029.B \-\-auto\-update\-homehost
93e790af 1030This flag is only meaningful with auto-assembly (see discussion below).
41a3b72a
NB
1031In that situation, if no suitable arrays are found for this homehost,
1032.I mdadm
93e790af 1033will rescan for any arrays at all and will assemble them and update the
41a3b72a 1034homehost to match the current host.
d1302dd8 1035..
41a3b72a 1036
e0d19036 1037.SH For Manage mode:
52826846 1038
3d5279b0
N
1039.TP
1040.BR \-t ", " \-\-test
1041Unless a more serious error occurred,
1042.I mdadm
1043will exit with a status of 2 if no changes were made to the array and
10440 if at least one change was made.
1045This can be useful when an indirect specifier such as
1046.BR missing ,
1047.B detached
1048or
1049.B faulty
1050is used in requesting an operation on the array.
1051.B \-\-test
1052will report failure if these specifiers didn't find any match.
1053
cd29a5c8 1054.TP
7e23fc43 1055.BR \-a ", " \-\-add
3d5279b0
N
1056hot-add listed devices.
1057If a device appears to have recently been part of the array
1058(possibly it failed or was removed) the device is re-added as describe
1059in the next point.
1060If that fails or the device was never part of the array, the device is
1061added as a hot-spare.
1062If the array is degraded, it will immediately start to rebuild data
1063onto that spare.
1064
1065Note that this and the following options are only meaningful on array
1066with redundancy. They don't apply to RAID0 or Linear.
52826846 1067
fe80f49b 1068.TP
7e23fc43 1069.BR \-\-re\-add
3d5279b0
N
1070re\-add a device that was previous removed from an array.
1071If the metadata on the device reports that it is a member of the
1072array, and the slot that it used is still vacant, then the device will
1073be added back to the array in the same position. This will normally
1074cause the data for that device to be recovered. However based on the
1075event count on the device, the recovery may only require sections that
1076are flagged a write-intent bitmap to be recovered or may not require
1077any recovery at all.
1078
1079When used on an array that has no metadata (i.e. it was built with
1080.BR \-\-build)
1081it will be assumed that bitmap-based recovery is enough to make the
1082device fully consistent with the array.
fe80f49b 1083
a4e13010
N
1084If the device name given is
1085.B missing
1086then mdadm will try to find any device that looks like it should be
1087part of the array but isn't and will try to re\-add all such devices.
1088
cd29a5c8 1089.TP
7e23fc43 1090.BR \-r ", " \-\-remove
2d465520 1091remove listed devices. They must not be active. i.e. they should
b80da661
NB
1092be failed or spare devices. As well as the name of a device file
1093(e.g.
1094.BR /dev/sda1 )
1095the words
1096.B failed
1097and
1098.B detached
1099can be given to
1100.BR \-\-remove .
1101The first causes all failed device to be removed. The second causes
93e790af 1102any device which is no longer connected to the system (i.e an 'open'
b80da661
NB
1103returns
1104.BR ENXIO )
1105to be removed. This will only succeed for devices that are spares or
1106have already been marked as failed.
52826846 1107
cd29a5c8 1108.TP
7e23fc43 1109.BR \-f ", " \-\-fail
cd29a5c8 1110mark listed devices as faulty.
b80da661
NB
1111As well as the name of a device file, the word
1112.B detached
1113can be given. This will cause any device that has been detached from
1114the system to be marked as failed. It can then be removed.
52826846 1115
cd29a5c8 1116.TP
7e23fc43 1117.BR \-\-set\-faulty
53e8b987 1118same as
7e23fc43 1119.BR \-\-fail .
52826846 1120
b3d31955
N
1121.TP
1122.BR \-\-write\-mostly
a4e13010 1123Subsequent devices that are added or re\-added will have the 'write-mostly'
e0fe762a 1124flag set. This is only valid for RAID1 and means that the 'md' driver
b3d31955
N
1125will avoid reading from these devices if possible.
1126.TP
1127.BR \-\-readwrite
a4e13010 1128Subsequent devices that are added or re\-added will have the 'write-mostly'
b3d31955
N
1129flag cleared.
1130
2ae555c3 1131.P
e0fe762a 1132Each of these options requires that the first device listed is the array
93e790af 1133to be acted upon, and the remainder are component devices to be added,
e0fe762a 1134removed, marked as faulty, etc. Several different operations can be
2ae555c3
NB
1135specified for different devices, e.g.
1136.in +5
7e23fc43 1137mdadm /dev/md0 \-\-add /dev/sda1 \-\-fail /dev/sdb1 \-\-remove /dev/sdb1
2ae555c3
NB
1138.in -5
1139Each operation applies to all devices listed until the next
93e790af 1140operation.
2ae555c3
NB
1141
1142If an array is using a write-intent bitmap, then devices which have
a4e13010 1143been removed can be re\-added in a way that avoids a full
93e790af 1144reconstruction but instead just updates the blocks that have changed
2ae555c3
NB
1145since the device was removed. For arrays with persistent metadata
1146(superblocks) this is done automatically. For arrays created with
7e23fc43 1147.B \-\-build
2ae555c3 1148mdadm needs to be told that this device we removed recently with
7e23fc43 1149.BR \-\-re\-add .
2ae555c3
NB
1150
1151Devices can only be removed from an array if they are not in active
93e790af
SW
1152use, i.e. that must be spares or failed devices. To remove an active
1153device, it must first be marked as
1154.B faulty.
2ae555c3
NB
1155
1156.SH For Misc mode:
1157
1158.TP
7e23fc43 1159.BR \-Q ", " \-\-query
2ae555c3
NB
1160Examine a device to see
1161(1) if it is an md device and (2) if it is a component of an md
1162array.
1163Information about what is discovered is presented.
1164
1165.TP
7e23fc43 1166.BR \-D ", " \-\-detail
e0fe762a 1167Print details of one or more md devices.
5787fa49 1168
4cce4069
DW
1169.TP
1170.BR \-\-detail\-platform
e0fe762a 1171Print details of the platform's RAID capabilities (firmware / hardware
4cce4069
DW
1172topology) for a given metadata format.
1173
54bad364
KS
1174.TP
1175.BR \-Y ", " \-\-export
1176When used with
0d726f17
KS
1177.B \-\-detail
1178or
1179.BR \-\-examine ,
54bad364
KS
1180output will be formatted as
1181.B key=value
1182pairs for easy import into the environment.
1183
2ae555c3 1184.TP
7e23fc43 1185.BR \-E ", " \-\-examine
e0fe762a
N
1186Print contents of the metadata stored on the named device(s).
1187Note the contrast between
1188.B \-\-examine
1189and
1190.BR \-\-detail .
1191.B \-\-examine
1192applies to devices which are components of an array, while
1193.B \-\-detail
1194applies to a whole array which is currently active.
5787fa49 1195.TP
7e23fc43 1196.B \-\-sparc2.2
e0fe762a
N
1197If an array was created on a SPARC machine with a 2.2 Linux kernel
1198patched with RAID support, the superblock will have been created
1199incorrectly, or at least incompatibly with 2.4 and later kernels.
1200Using the
7e23fc43 1201.B \-\-sparc2.2
5787fa49 1202flag with
7e23fc43 1203.B \-\-examine
5787fa49
NB
1204will fix the superblock before displaying it. If this appears to do
1205the right thing, then the array can be successfully assembled using
7e23fc43 1206.BR "\-\-assemble \-\-update=sparc2.2" .
5787fa49 1207
2ae555c3 1208.TP
7e23fc43 1209.BR \-X ", " \-\-examine\-bitmap
2ae555c3 1210Report information about a bitmap file.
01d9299c 1211The argument is either an external bitmap file or an array component
e0fe762a
N
1212in case of an internal bitmap. Note that running this on an array
1213device (e.g.
1214.BR /dev/md0 )
1215does not report the bitmap for that array.
e0d19036 1216
cd29a5c8 1217.TP
7e23fc43 1218.BR \-R ", " \-\-run
e0fe762a
N
1219start a partially assembled array. If
1220.B \-\-assemble
1221did not find enough devices to fully start the array, it might leaving
1222it partially assembled. If you wish, you can then use
1223.B \-\-run
1224to start the array in degraded mode.
52826846 1225
cd29a5c8 1226.TP
7e23fc43 1227.BR \-S ", " \-\-stop
cd29a5c8 1228deactivate array, releasing all resources.
52826846 1229
cd29a5c8 1230.TP
7e23fc43 1231.BR \-o ", " \-\-readonly
cd29a5c8 1232mark array as readonly.
52826846 1233
cd29a5c8 1234.TP
7e23fc43 1235.BR \-w ", " \-\-readwrite
cd29a5c8 1236mark array as readwrite.
52826846 1237
e0d19036 1238.TP
7e23fc43 1239.B \-\-zero\-superblock
e0d19036 1240If the device contains a valid md superblock, the block is
35cc5be4 1241overwritten with zeros. With
7e23fc43 1242.B \-\-force
35cc5be4 1243the block where the superblock would be is overwritten even if it
e0d19036 1244doesn't appear to be valid.
52826846 1245
33414a01
DW
1246.TP
1247.B \-\-kill\-subarray=
1248If the device is a container and the argument to \-\-kill\-subarray
1249specifies an inactive subarray in the container, then the subarray is
1250deleted. Deleting all subarrays will leave an 'empty-container' or
1251spare superblock on the drives. See \-\-zero\-superblock for completely
1252removing a superblock. Note that some formats depend on the subarray
1253index for generating a UUID, this command will fail if it would change
1254the UUID of an active subarray.
1255
aa534678
DW
1256.TP
1257.B \-\-update\-subarray=
1258If the device is a container and the argument to \-\-update\-subarray
1259specifies a subarray in the container, then attempt to update the given
1260superblock field in the subarray. See below in
1261.B MISC MODE
1262for details.
1263
feb716e9 1264.TP
7e23fc43 1265.BR \-t ", " \-\-test
feb716e9 1266When used with
7e23fc43 1267.BR \-\-detail ,
feb716e9
NB
1268the exit status of
1269.I mdadm
e0fe762a
N
1270is set to reflect the status of the device. See below in
1271.B MISC MODE
1272for details.
feb716e9 1273
b90c0e9a 1274.TP
7e23fc43 1275.BR \-W ", " \-\-wait
b90c0e9a
NB
1276For each md device given, wait for any resync, recovery, or reshape
1277activity to finish before returning.
1278.I mdadm
1279will return with success if it actually waited for every device
1280listed, otherwise it will return failure.
1281
1770662b
DW
1282.TP
1283.BR \-\-wait\-clean
fabbfd48
DW
1284For each md device given, or each device in /proc/mdstat if
1285.B \-\-scan
1286is given, arrange for the array to be marked clean as soon as possible.
7146ec6a
DW
1287.I mdadm
1288will return with success if the array uses external metadata and we
1289successfully waited. For native arrays this returns immediately as the
6a0ee6a0
DW
1290kernel handles dirty-clean transitions at shutdown. No action is taken
1291if safe-mode handling is disabled.
1770662b 1292
8382f19b
NB
1293.SH For Incremental Assembly mode:
1294.TP
7e23fc43 1295.BR \-\-rebuild\-map ", " \-r
8382f19b
NB
1296Rebuild the map file
1297.RB ( /var/run/mdadm/map )
1298that
1299.I mdadm
1300uses to help track which arrays are currently being assembled.
1301
1302.TP
7e23fc43 1303.BR \-\-run ", " \-R
8382f19b
NB
1304Run any array assembled as soon as a minimal number of devices are
1305available, rather than waiting until all expected devices are present.
1306
1307.TP
7e23fc43 1308.BR \-\-scan ", " \-s
8382f19b 1309Only meaningful with
7e23fc43 1310.B \-R
8382f19b
NB
1311this will scan the
1312.B map
1313file for arrays that are being incrementally assembled and will try to
1314start any that are not already started. If any such array is listed
1315in
1316.B mdadm.conf
1317as requiring an external bitmap, that bitmap will be attached first.
1318
29ba4804
N
1319.TP
1320.BR \-\-fail ", " \-f
1321This allows the hot-plug system to remove devices that have fully disappeared
1322from the kernel. It will first fail and then remove the device from any
1323array it belongs to.
1324The device name given should be a kernel device name such as "sda",
1325not a name in
1326.IR /dev .
1327
e0d19036
NB
1328.SH For Monitor mode:
1329.TP
7e23fc43 1330.BR \-m ", " \-\-mail
e0d19036
NB
1331Give a mail address to send alerts to.
1332
1333.TP
7e23fc43 1334.BR \-p ", " \-\-program ", " \-\-alert
e0d19036
NB
1335Give a program to be run whenever an event is detected.
1336
773135f5 1337.TP
7e23fc43 1338.BR \-y ", " \-\-syslog
773135f5
NB
1339Cause all events to be reported through 'syslog'. The messages have
1340facility of 'daemon' and varying priorities.
1341
e0d19036 1342.TP
7e23fc43 1343.BR \-d ", " \-\-delay
e0d19036 1344Give a delay in seconds.
51ac42e3 1345.I mdadm
e0d19036 1346polls the md arrays and then waits this many seconds before polling
e0fe762a
N
1347again. The default is 60 seconds. Since 2.6.16, there is no need to
1348reduce this as the kernel alerts
1349.I mdadm
1350immediately when there is any change.
e0d19036 1351
9a36a9b7
ZB
1352.TP
1353.BR \-r ", " \-\-increment
1354Give a percentage increment.
1355.I mdadm
1356will generate RebuildNN events with the given percentage increment.
1357
d013a55e 1358.TP
7e23fc43 1359.BR \-f ", " \-\-daemonise
d013a55e 1360Tell
51ac42e3 1361.I mdadm
d013a55e 1362to run as a background daemon if it decides to monitor anything. This
e0fe762a 1363causes it to fork and run in the child, and to disconnect from the
d013a55e
NB
1364terminal. The process id of the child is written to stdout.
1365This is useful with
7e23fc43 1366.B \-\-scan
d013a55e
NB
1367which will only continue monitoring if a mail address or alert program
1368is found in the config file.
1369
b5e64645 1370.TP
7e23fc43 1371.BR \-i ", " \-\-pid\-file
b5e64645 1372When
51ac42e3 1373.I mdadm
b5e64645
NB
1374is running in daemon mode, write the pid of the daemon process to
1375the specified file, instead of printing it on standard output.
1376
aa88f531 1377.TP
7e23fc43 1378.BR \-1 ", " \-\-oneshot
aa88f531
NB
1379Check arrays only once. This will generate
1380.B NewArray
1381events and more significantly
1382.B DegradedArray
a9d69660
NB
1383and
1384.B SparesMissing
aa88f531
NB
1385events. Running
1386.in +5
7e23fc43 1387.B " mdadm \-\-monitor \-\-scan \-1"
aa88f531
NB
1388.in -5
1389from a cron script will ensure regular notification of any degraded arrays.
1390
98c6faba 1391.TP
7e23fc43 1392.BR \-t ", " \-\-test
98c6faba
NB
1393Generate a
1394.B TestMessage
1395alert for every array found at startup. This alert gets mailed and
1396passed to the alert program. This can be used for testing that alert
a9d69660 1397message do get through successfully.
98c6faba 1398
e0d19036 1399.SH ASSEMBLE MODE
52826846 1400
cd29a5c8
NB
1401.HP 12
1402Usage:
7e23fc43 1403.B mdadm \-\-assemble
5787fa49
NB
1404.I md-device options-and-component-devices...
1405.HP 12
1406Usage:
7e23fc43 1407.B mdadm \-\-assemble \-\-scan
e0fe762a 1408.I md-devices-and-options...
cd29a5c8
NB
1409.HP 12
1410Usage:
7e23fc43 1411.B mdadm \-\-assemble \-\-scan
e0fe762a 1412.I options...
52826846 1413
cd29a5c8 1414.PP
e0fe762a 1415This usage assembles one or more RAID arrays from pre-existing components.
9a9dab36 1416For each array, mdadm needs to know the md device, the identity of the
e0fe762a 1417array, and a number of component-devices. These can be found in a number of ways.
52826846 1418
5787fa49 1419In the first usage example (without the
7e23fc43 1420.BR \-\-scan )
5787fa49
NB
1421the first device given is the md device.
1422In the second usage example, all devices listed are treated as md
1423devices and assembly is attempted.
1424In the third (where no devices are listed) all md devices that are
e0fe762a
N
1425listed in the configuration file are assembled. If not arrays are
1426described by the configuration file, then any arrays that
1427can be found on unused devices will be assembled.
52826846 1428
d013a55e 1429If precisely one device is listed, but
7e23fc43 1430.B \-\-scan
dd0781e5 1431is not given, then
d013a55e
NB
1432.I mdadm
1433acts as though
7e23fc43 1434.B \-\-scan
93e790af 1435was given and identity information is extracted from the configuration file.
d013a55e 1436
2ae555c3 1437The identity can be given with the
7e23fc43 1438.B \-\-uuid
e0fe762a
N
1439option, the
1440.B \-\-name
1441option, or the
7e23fc43 1442.B \-\-super\-minor
93e790af
SW
1443option, will be taken from the md-device record in the config file, or
1444will be taken from the super block of the first component-device
1445listed on the command line.
52826846 1446
2ae555c3 1447Devices can be given on the
7e23fc43 1448.B \-\-assemble
e0fe762a 1449command line or in the config file. Only devices which have an md
5787fa49
NB
1450superblock which contains the right identity will be considered for
1451any array.
52826846 1452
2ae555c3 1453The config file is only used if explicitly named with
7e23fc43 1454.B \-\-config
d013a55e 1455or requested with (a possibly implicit)
7e23fc43 1456.BR \-\-scan .
52826846 1457In the later case,
9a9dab36 1458.B /etc/mdadm.conf
8fd8d9c4
N
1459or
1460.B /etc/mdadm/mdadm.conf
52826846
NB
1461is used.
1462
2ae555c3 1463If
7e23fc43 1464.B \-\-scan
cd29a5c8
NB
1465is not given, then the config file will only be used to find the
1466identity of md arrays.
52826846 1467
2d465520 1468Normally the array will be started after it is assembled. However if
7e23fc43 1469.B \-\-scan
e0fe762a
N
1470is not given and not all expected drives were listed, then the array
1471is not started (to guard against usage errors). To insist that the
1472array be started in this case (as may work for RAID1, 4, 5, 6, or 10),
1473give the
7e23fc43 1474.B \-\-run
cd29a5c8 1475flag.
52826846 1476
e0fe762a
N
1477If
1478.I udev
1479is active,
1480.I mdadm
1481does not create any entries in
dd0781e5 1482.B /dev
e0fe762a
N
1483but leaves that to
1484.IR udev .
1485It does record information in
1486.B /var/run/mdadm/map
1487which will allow
1488.I udev
1489to choose the correct name.
dd0781e5 1490
e0fe762a
N
1491If
1492.I mdadm
1493detects that udev is not configured, it will create the devices in
1494.B /dev
1495itself.
dd0781e5 1496
e0fe762a
N
1497In Linux kernels prior to version 2.6.28 there were two distinctly
1498different types of md devices that could be created: one that could be
1499partitioned using standard partitioning tools and one that could not.
1500Since 2.6.28 that distinction is no longer relevant as both type of
1501devices can be partitioned.
1502.I mdadm
1503will normally create the type that originally could not be partitioned
1504as it has a well defined major number (9).
dd0781e5 1505
e0fe762a
N
1506Prior to 2.6.28, it is important that mdadm chooses the correct type
1507of array device to use. This can be controlled with the
1508.B \-\-auto
1509option. In particular, a value of "mdp" or "part" or "p" tells mdadm
1510to use a partitionable device rather than the default.
dd0781e5 1511
e0fe762a
N
1512In the no-udev case, the value given to
1513.B \-\-auto
1514can be suffixed by a number. This tells
1515.I mdadm
1516to create that number of partition devices rather than the default of 4.
dd0781e5 1517
e0fe762a 1518The value given to
7e23fc43 1519.B \-\-auto
e0fe762a
N
1520can also be given in the configuration file as a word starting
1521.B auto=
1522on the ARRAY line for the relevant array.
52826846 1523
41a3b72a
NB
1524.SS Auto Assembly
1525When
7e23fc43 1526.B \-\-assemble
41a3b72a 1527is used with
7e23fc43 1528.B \-\-scan
41a3b72a
NB
1529and no devices are listed,
1530.I mdadm
1531will first attempt to assemble all the arrays listed in the config
1532file.
1533
e0fe762a
N
1534In no array at listed in the config (other than those marked
1535.BR <ignore> )
1536it will look through the available devices for possible arrays and
1537will try to assemble anything that it finds. Arrays which are tagged
1538as belonging to the given homehost will be assembled and started
1539normally. Arrays which do not obviously belong to this host are given
1540names that are expected not to conflict with anything local, and are
1541started "read-auto" so that nothing is written to any device until the
1542array is written to. i.e. automatic resync etc is delayed.
41a3b72a
NB
1543
1544If
1545.I mdadm
1546finds a consistent set of devices that look like they should comprise
1547an array, and if the superblock is tagged as belonging to the given
1548home host, it will automatically choose a device name and try to
1549assemble the array. If the array uses version-0.90 metadata, then the
1550.B minor
1551number as recorded in the superblock is used to create a name in
1552.B /dev/md/
1553so for example
1554.BR /dev/md/3 .
1555If the array uses version-1 metadata, then the
1556.B name
1557from the superblock is used to similarly create a name in
e0fe762a 1558.B /dev/md/
93e790af 1559(the name will have any 'host' prefix stripped first).
41a3b72a 1560
c64ba03a
N
1561This behaviour can be modified by the
1562.I AUTO
1563line in the
1564.I mdadm.conf
1565configuration file. This line can indicate that specific metadata
1566type should, or should not, be automatically assembled. If an array
1567is found which is not listed in
1568.I mdadm.conf
1569and has a metadata format that is denied by the
1570.I AUTO
1571line, then it will not be assembled.
1572The
1573.I AUTO
1574line can also request that all arrays identified as being for this
1575homehost should be assembled regardless of their metadata type.
1576See
1577.IR mdadm.conf (5)
1578for further details.
1579
d1302dd8 1580.ig
41a3b72a
NB
1581If
1582.I mdadm
1583cannot find any array for the given host at all, and if
7e23fc43 1584.B \-\-auto\-update\-homehost
41a3b72a
NB
1585is given, then
1586.I mdadm
1587will search again for any array (not just an array created for this
1588host) and will assemble each assuming
7e23fc43 1589.BR \-\-update=homehost .
41a3b72a
NB
1590This will change the host tag in the superblock so that on the next run,
1591these arrays will be found without the second pass. The intention of
1592this feature is to support transitioning a set of md arrays to using
1593homehost tagging.
1594
1595The reason for requiring arrays to be tagged with the homehost for
1596auto assembly is to guard against problems that can arise when moving
1597devices from one host to another.
d1302dd8 1598..
41a3b72a 1599
cd29a5c8 1600.SH BUILD MODE
52826846 1601
cd29a5c8
NB
1602.HP 12
1603Usage:
7e23fc43 1604.B mdadm \-\-build
93e790af 1605.I md-device
7e23fc43
PS
1606.BI \-\-chunk= X
1607.BI \-\-level= Y
1608.BI \-\-raid\-devices= Z
cd29a5c8
NB
1609.I devices
1610
1611.PP
2ae555c3 1612This usage is similar to
7e23fc43 1613.BR \-\-create .
e0fe762a 1614The difference is that it creates an array without a superblock. With
cd29a5c8 1615these arrays there is no difference between initially creating the array and
52826846
NB
1616subsequently assembling the array, except that hopefully there is useful
1617data there in the second case.
1618
e0fe762a
N
1619The level may raid0, linear, raid1, raid10, multipath, or faulty, or
1620one of their synonyms. All devices must be listed and the array will
1621be started once complete. It will often be appropriate to use
1622.B \-\-assume\-clean
1623with levels raid1 or raid10.
cd29a5c8
NB
1624
1625.SH CREATE MODE
1626
1627.HP 12
1628Usage:
7e23fc43 1629.B mdadm \-\-create
93e790af 1630.I md-device
7e23fc43
PS
1631.BI \-\-chunk= X
1632.BI \-\-level= Y
cd29a5c8 1633.br
7e23fc43 1634.BI \-\-raid\-devices= Z
e0fe762a 1635.I devices
cd29a5c8
NB
1636
1637.PP
1638This usage will initialise a new md array, associate some devices with
1639it, and activate the array.
1640
e0fe762a
N
1641The named device will normally not exist when
1642.I "mdadm \-\-create"
1643is run, but will be created by
1644.I udev
1645once the array becomes active.
dd0781e5 1646
e0fe762a
N
1647As devices are added, they are checked to see if they contain RAID
1648superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
1649device size exceeds 1%.
1650
1651If any discrepancy is found, the array will not automatically be run, though
2ae555c3 1652the presence of a
7e23fc43 1653.B \-\-run
cd29a5c8
NB
1654can override this caution.
1655
2d465520 1656To create a "degraded" array in which some devices are missing, simply
d013a55e 1657give the word "\fBmissing\fP"
2d465520 1658in place of a device name. This will cause
51ac42e3 1659.I mdadm
2d465520
NB
1660to leave the corresponding slot in the array empty.
1661For a RAID4 or RAID5 array at most one slot can be
98c6faba 1662"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
1663For a RAID1 array, only one real device needs to be given. All of the
1664others can be
d013a55e 1665"\fBmissing\fP".
2d465520 1666
feb716e9 1667When creating a RAID5 array,
51ac42e3 1668.I mdadm
feb716e9 1669will automatically create a degraded array with an extra spare drive.
e0fe762a
N
1670This is because building the spare into a degraded array is in general
1671faster than resyncing the parity on a non-degraded, but not clean,
1672array. This feature can be overridden with the
7e23fc43 1673.B \-\-force
feb716e9
NB
1674option.
1675
0ee4da98 1676When creating an array with version-1 metadata a name for the array is
41a3b72a
NB
1677required.
1678If this is not given with the
7e23fc43 1679.B \-\-name
41a3b72a
NB
1680option,
1681.I mdadm
0ee4da98 1682will choose a name based on the last component of the name of the
41a3b72a
NB
1683device being created. So if
1684.B /dev/md3
1685is being created, then the name
1686.B 3
1687will be chosen.
1688If
1689.B /dev/md/home
1690is being created, then the name
1691.B home
1692will be used.
1693
e0fe762a
N
1694When creating a partition based array, using
1695.I mdadm
1696with version-1.x metadata, the partition type should be set to
e0f31f50 1697.B 0xDA
e0fe762a 1698(non fs-data). This type selection allows for greater precision since
e0f31f50
PC
1699using any other [RAID auto-detect (0xFD) or a GNU/Linux partition (0x83)],
1700might create problems in the event of array recovery through a live cdrom.
1701
3d3dd91e
NB
1702A new array will normally get a randomly assigned 128bit UUID which is
1703very likely to be unique. If you have a specific need, you can choose
1704a UUID for the array by giving the
7e23fc43 1705.B \-\-uuid=
3d3dd91e
NB
1706option. Be warned that creating two arrays with the same UUID is a
1707recipe for disaster. Also, using
7e23fc43 1708.B \-\-uuid=
3d3dd91e 1709when creating a v0.90 array will silently override any
7e23fc43 1710.B \-\-homehost=
3d3dd91e 1711setting.
e43d0cda
NB
1712.\"If the
1713.\".B \-\-size
1714.\"option is given, it is not necessary to list any component-devices in this command.
1715.\"They can be added later, before a
1716.\".B \-\-run.
1717.\"If no
1718.\".B \-\-size
1719.\"is given, the apparent size of the smallest drive given is used.
cd29a5c8 1720
8fd8d9c4
N
1721When creating an array within a
1722.B CONTAINER
1723.I mdadm
1724can be given either the list of devices to use, or simply the name of
1725the container. The former case gives control over which devices in
1726the container will be used for the array. The latter case allows
1727.I mdadm
1728to automatically choose which devices to use based on how much spare
1729space is available.
1730
53e8b987 1731The General Management options that are valid with
7e23fc43 1732.B \-\-create
53e8b987 1733are:
cd29a5c8 1734.TP
7e23fc43 1735.B \-\-run
dd0781e5 1736insist on running the array even if some devices look like they might
cd29a5c8
NB
1737be in use.
1738
1739.TP
7e23fc43 1740.B \-\-readonly
b3f1c093 1741start the array readonly \(em not supported yet.
52826846 1742
e0d19036 1743.SH MANAGE MODE
cd29a5c8
NB
1744.HP 12
1745Usage:
e0d19036
NB
1746.B mdadm
1747.I device
1748.I options... devices...
cd29a5c8
NB
1749.PP
1750
e0d19036
NB
1751This usage will allow individual devices in an array to be failed,
1752removed or added. It is possible to perform multiple operations with
e0fe762a 1753on command. For example:
e0d19036 1754.br
7e23fc43 1755.B " mdadm /dev/md0 \-f /dev/hda1 \-r /dev/hda1 \-a /dev/hda1"
e0d19036
NB
1756.br
1757will firstly mark
1758.B /dev/hda1
1759as faulty in
1760.B /dev/md0
1761and will then remove it from the array and finally add it back
2d465520 1762in as a spare. However only one md array can be affected by a single
2ae555c3 1763command.
e0d19036 1764
e0fe762a
N
1765When a device is added to an active array, mdadm checks to see if it
1766has metadata on it which suggests that it was recently a member of the
a4e13010 1767array. If it does, it tries to "re\-add" the device. If there have
e0fe762a
N
1768been no changes since the device was removed, or if the array has a
1769write-intent bitmap which has recorded whatever changes there were,
1770then the device will immediately become a full member of the array and
1771those differences recorded in the bitmap will be resolved.
1772
e0d19036
NB
1773.SH MISC MODE
1774.HP 12
1775Usage:
9a9dab36 1776.B mdadm
e0d19036 1777.I options ...
e0fe762a 1778.I devices ...
e0d19036 1779.PP
cd29a5c8 1780
b5e64645 1781MISC mode includes a number of distinct operations that
e0d19036
NB
1782operate on distinct devices. The operations are:
1783.TP
962a108f 1784.B \-\-query
e0d19036
NB
1785The device is examined to see if it is
1786(1) an active md array, or
1787(2) a component of an md array.
1788The information discovered is reported.
1789
1790.TP
962a108f 1791.B \-\-detail
2d465520 1792The device should be an active md device.
e0fe762a 1793.B mdadm
2d465520 1794will display a detailed description of the array.
7e23fc43 1795.B \-\-brief
2d465520 1796or
7e23fc43 1797.B \-\-scan
2d465520 1798will cause the output to be less detailed and the format to be
e0d19036 1799suitable for inclusion in
9a9dab36 1800.BR /etc/mdadm.conf .
feb716e9
NB
1801The exit status of
1802.I mdadm
1803will normally be 0 unless
1804.I mdadm
93e790af 1805failed to get useful information about the device(s); however, if the
7e23fc43 1806.B \-\-test
feb716e9
NB
1807option is given, then the exit status will be:
1808.RS
1809.TP
18100
1811The array is functioning normally.
1812.TP
18131
1814The array has at least one failed device.
1815.TP
18162
a77be586 1817The array has multiple failed devices such that it is unusable.
feb716e9
NB
1818.TP
18194
1820There was an error while trying to get information about the device.
1821.RE
cd29a5c8 1822
4cce4069
DW
1823.TP
1824.B \-\-detail\-platform
e0fe762a 1825Print detail of the platform's RAID capabilities (firmware / hardware
4cce4069
DW
1826topology). If the metadata is specified with
1827.B \-e
1828or
1829.B \-\-metadata=
1830then the return status will be:
1831.RS
1832.TP
18330
1834metadata successfully enumerated its platform components on this system
1835.TP
18361
1837metadata is platform independent
1838.TP
18392
1840metadata failed to find its platform components on this system
1841.RE
1842
aa534678
DW
1843.TP
1844.B \-\-update\-subarray=
1845If the device is a container and the argument to \-\-update\-subarray
1846specifies a subarray in the container, then attempt to update the given
1847superblock field in the subarray. Similar to updating an array in
1848"assemble" mode, the field to update is selected by
1849.B \-U
1850or
1851.B \-\-update=
1852option. Currently only
1853.B name
1854is supported.
1855
1856The
1857.B name
1858option updates the subarray name in the metadata, it may not affect the
1859device node name or the device node symlink until the subarray is
1860re\-assembled. If updating
1861.B name
1862would change the UUID of an active subarray this operation is blocked,
1863and the command will end in an error.
1864
e0d19036 1865.TP
962a108f 1866.B \-\-examine
2d465520 1867The device should be a component of an md array.
51ac42e3 1868.I mdadm
2d465520 1869will read the md superblock of the device and display the contents.
e0d19036 1870If
7e23fc43 1871.B \-\-brief
93e790af 1872or
7e23fc43 1873.B \-\-scan
93e790af 1874is given, then multiple devices that are components of the one array
e0d19036
NB
1875are grouped together and reported in a single entry suitable
1876for inclusion in
1877.BR /etc/mdadm.conf .
1878
2d465520 1879Having
7e23fc43 1880.B \-\-scan
e0d19036
NB
1881without listing any devices will cause all devices listed in the
1882config file to be examined.
1883
1884.TP
962a108f 1885.B \-\-stop
98c6faba
NB
1886The devices should be active md arrays which will be deactivated, as
1887long as they are not currently in use.
e0d19036
NB
1888
1889.TP
962a108f 1890.B \-\-run
e0d19036
NB
1891This will fully activate a partially assembled md array.
1892
1893.TP
962a108f 1894.B \-\-readonly
e0d19036
NB
1895This will mark an active array as read-only, providing that it is
1896not currently being used.
1897
1898.TP
962a108f 1899.B \-\-readwrite
e0d19036
NB
1900This will change a
1901.B readonly
1902array back to being read/write.
1903
2d465520 1904.TP
962a108f 1905.B \-\-scan
2d465520 1906For all operations except
7e23fc43
PS
1907.BR \-\-examine ,
1908.B \-\-scan
2d465520
NB
1909will cause the operation to be applied to all arrays listed in
1910.BR /proc/mdstat .
1911For
7e23fc43
PS
1912.BR \-\-examine,
1913.B \-\-scan
2d465520
NB
1914causes all devices listed in the config file to be examined.
1915
a1331cc4
N
1916.TP
1917.BR \-b ", " \-\-brief
1918Be less verbose. This is used with
1919.B \-\-detail
1920and
1921.BR \-\-examine .
1922Using
1923.B \-\-brief
1924with
1925.B \-\-verbose
1926gives an intermediate level of verbosity.
1927
e0d19036
NB
1928.SH MONITOR MODE
1929
cd29a5c8
NB
1930.HP 12
1931Usage:
7e23fc43 1932.B mdadm \-\-monitor
e0d19036
NB
1933.I options... devices...
1934
cd29a5c8 1935.PP
e0d19036 1936This usage causes
51ac42e3 1937.I mdadm
e0d19036
NB
1938to periodically poll a number of md arrays and to report on any events
1939noticed.
51ac42e3 1940.I mdadm
e0d19036
NB
1941will never exit once it decides that there are arrays to be checked,
1942so it should normally be run in the background.
1943
2d465520 1944As well as reporting events,
51ac42e3 1945.I mdadm
2d465520
NB
1946may move a spare drive from one array to another if they are in the
1947same
1948.B spare-group
a9d69660 1949and if the destination array has a failed drive but no spares.
2d465520 1950
e0d19036 1951If any devices are listed on the command line,
51ac42e3 1952.I mdadm
e0fe762a 1953will only monitor those devices. Otherwise all arrays listed in the
e0d19036 1954configuration file will be monitored. Further, if
7e23fc43 1955.B \-\-scan
e0d19036
NB
1956is given, then any other md devices that appear in
1957.B /proc/mdstat
1958will also be monitored.
1959
1960The result of monitoring the arrays is the generation of events.
bd526cee 1961These events are passed to a separate program (if specified) and may
2d465520 1962be mailed to a given E-mail address.
e0d19036 1963
93e790af
SW
1964When passing events to a program, the program is run once for each event,
1965and is given 2 or 3 command-line arguments: the first is the
1966name of the event (see below), the second is the name of the
bd526cee 1967md device which is affected, and the third is the name of a related
93e790af 1968device if relevant (such as a component device that has failed).
cd29a5c8
NB
1969
1970If
7e23fc43 1971.B \-\-scan
e0d19036
NB
1972is given, then a program or an E-mail address must be specified on the
1973command line or in the config file. If neither are available, then
51ac42e3 1974.I mdadm
e0d19036
NB
1975will not monitor anything.
1976Without
93e790af 1977.B \-\-scan,
51ac42e3 1978.I mdadm
2d465520 1979will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1980no program or email is given, then each event is reported to
1981.BR stdout .
cd29a5c8 1982
e0d19036
NB
1983The different events are:
1984
1985.RS 4
1986.TP
1987.B DeviceDisappeared
2d465520 1988An md array which previously was configured appears to no longer be
773135f5 1989configured. (syslog priority: Critical)
e0d19036 1990
b8f72a62
NB
1991If
1992.I mdadm
1993was told to monitor an array which is RAID0 or Linear, then it will
1994report
1995.B DeviceDisappeared
1996with the extra information
1997.BR Wrong-Level .
1998This is because RAID0 and Linear do not support the device-failed,
1999hot-spare and resync operations which are monitored.
2000
e0d19036
NB
2001.TP
2002.B RebuildStarted
773135f5 2003An md array started reconstruction. (syslog priority: Warning)
e0d19036
NB
2004
2005.TP
2006.BI Rebuild NN
2007Where
2008.I NN
9a36a9b7
ZB
2009is a two-digit number (ie. 05, 48). This indicates that rebuild
2010has passed that many percent of the total. The events are generated
2011with fixed increment since 0. Increment size may be specified with
2012a commandline option (default is 20). (syslog priority: Warning)
e0d19036 2013
98c6faba
NB
2014.TP
2015.B RebuildFinished
2016An md array that was rebuilding, isn't any more, either because it
773135f5 2017finished normally or was aborted. (syslog priority: Warning)
98c6faba 2018
e0d19036
NB
2019.TP
2020.B Fail
773135f5
NB
2021An active component device of an array has been marked as
2022faulty. (syslog priority: Critical)
e0d19036
NB
2023
2024.TP
2025.B FailSpare
2026A spare component device which was being rebuilt to replace a faulty
93e790af 2027device has failed. (syslog priority: Critical)
e0d19036
NB
2028
2029.TP
2030.B SpareActive
2031A spare component device which was being rebuilt to replace a faulty
98b24a2a 2032device has been successfully rebuilt and has been made active.
773135f5 2033(syslog priority: Info)
e0d19036
NB
2034
2035.TP
2036.B NewArray
2037A new md array has been detected in the
2038.B /proc/mdstat
e0fe762a 2039file. (syslog priority: Info)
e0d19036 2040
aa88f531
NB
2041.TP
2042.B DegradedArray
2043A newly noticed array appears to be degraded. This message is not
2044generated when
2045.I mdadm
2046notices a drive failure which causes degradation, but only when
2047.I mdadm
2048notices that an array is degraded when it first sees the array.
93e790af 2049(syslog priority: Critical)
aa88f531 2050
e0d19036
NB
2051.TP
2052.B MoveSpare
2053A spare drive has been moved from one array in a
2054.B spare-group
2055to another to allow a failed drive to be replaced.
773135f5 2056(syslog priority: Info)
e0d19036 2057
b8f72a62
NB
2058.TP
2059.B SparesMissing
2060If
2061.I mdadm
2062has been told, via the config file, that an array should have a certain
2063number of spare devices, and
2064.I mdadm
93e790af 2065detects that it has fewer than this number when it first sees the
b8f72a62
NB
2066array, it will report a
2067.B SparesMissing
2068message.
d1732eeb 2069(syslog priority: Warning)
b8f72a62 2070
98c6faba
NB
2071.TP
2072.B TestMessage
2073An array was found at startup, and the
7e23fc43 2074.B \-\-test
98c6faba 2075flag was given.
773135f5 2076(syslog priority: Info)
e0d19036
NB
2077.RE
2078
2079Only
93e790af
SW
2080.B Fail,
2081.B FailSpare,
2082.B DegradedArray,
2083.B SparesMissing
e0d19036 2084and
98c6faba 2085.B TestMessage
e0d19036 2086cause Email to be sent. All events cause the program to be run.
93e790af 2087The program is run with two or three arguments: the event
e0d19036
NB
2088name, the array device and possibly a second device.
2089
2090Each event has an associated array device (e.g.
2091.BR /dev/md1 )
2092and possibly a second device. For
2093.BR Fail ,
2094.BR FailSpare ,
2095and
2096.B SpareActive
2097the second device is the relevant component device.
2098For
2099.B MoveSpare
2100the second device is the array that the spare was moved from.
2101
2102For
51ac42e3 2103.I mdadm
e0d19036 2104to move spares from one array to another, the different arrays need to
93e790af 2105be labeled with the same
e0d19036
NB
2106.B spare-group
2107in the configuration file. The
2108.B spare-group
93e790af 2109name can be any string; it is only necessary that different spare
2d465520 2110groups use different names.
e0d19036
NB
2111
2112When
51ac42e3 2113.I mdadm
93e790af 2114detects that an array in a spare group has fewer active
e0d19036
NB
2115devices than necessary for the complete array, and has no spare
2116devices, it will look for another array in the same spare group that
2117has a full complement of working drive and a spare. It will then
2118attempt to remove the spare from the second drive and add it to the
2119first.
2120If the removal succeeds but the adding fails, then it is added back to
2121the original array.
2122
dd0781e5
NB
2123.SH GROW MODE
2124The GROW mode is used for changing the size or shape of an active
2125array.
2126For this to work, the kernel must support the necessary change.
2ae555c3 2127Various types of growth are being added during 2.6 development,
e0fe762a 2128including restructuring a RAID5 array to have more active devices.
dd0781e5 2129
dfd4d8ee
NB
2130Currently the only support available is to
2131.IP \(bu 4
2132change the "size" attribute
2133for RAID1, RAID5 and RAID6.
2134.IP \(bu 4
f24e2d6c
N
2135increase or decrease the "raid\-devices" attribute of RAID1, RAID5,
2136and RAID6.
2137.IP \bu 4
2138change the chunk-size and layout of RAID5 and RAID6.
2139.IP \bu 4
2140convert between RAID1 and RAID5, and between RAID5 and RAID6.
dfd4d8ee 2141.IP \(bu 4
93e790af 2142add a write-intent bitmap to any array which supports these bitmaps, or
2ae555c3 2143remove a write-intent bitmap from such an array.
dfd4d8ee 2144.PP
dd0781e5 2145
8fd8d9c4
N
2146GROW mode is not currently supported for
2147.B CONTAINERS
2148or arrays inside containers.
2149
2ae555c3 2150.SS SIZE CHANGES
fe80f49b 2151Normally when an array is built the "size" it taken from the smallest
dd0781e5
NB
2152of the drives. If all the small drives in an arrays are, one at a
2153time, removed and replaced with larger drives, then you could have an
2154array of large drives with only a small amount used. In this
2155situation, changing the "size" with "GROW" mode will allow the extra
2156space to start being used. If the size is increased in this way, a
2157"resync" process will start to make sure the new parts of the array
2158are synchronised.
2159
2160Note that when an array changes size, any filesystem that may be
2161stored in the array will not automatically grow to use the space. The
2162filesystem will need to be explicitly told to use the extra space.
2163
e0fe762a
N
2164Also the size of an array cannot be changed while it has an active
2165bitmap. If an array has a bitmap, it must be removed before the size
2166can be changed. Once the change it complete a new bitmap can be created.
2167
2168.SS RAID\-DEVICES CHANGES
2ae555c3 2169
dd0781e5
NB
2170A RAID1 array can work with any number of devices from 1 upwards
2171(though 1 is not very useful). There may be times which you want to
2172increase or decrease the number of active devices. Note that this is
2173different to hot-add or hot-remove which changes the number of
2174inactive devices.
2175
2176When reducing the number of devices in a RAID1 array, the slots which
2177are to be removed from the array must already be vacant. That is, the
93e790af 2178devices which were in those slots must be failed and removed.
dd0781e5
NB
2179
2180When the number of devices is increased, any hot spares that are
a9d69660 2181present will be activated immediately.
dd0781e5 2182
f24e2d6c 2183Changing the number of active devices in a RAID5 or RAID6 is much more
2ae555c3 2184effort. Every block in the array will need to be read and written
f24e2d6c 2185back to a new location. From 2.6.17, the Linux Kernel is able to
ca4f89a3
N
2186increase the number of devices in a RAID5 safely, including restarting
2187an interrupted "reshape". From 2.6.31, the Linux Kernel is able to
f24e2d6c
N
2188increase or decrease the number of devices in a RAID5 or RAID6.
2189
2190When decreasing the number of devices, the size of the array will also
2191decrease. If there was data in the array, it could get destroyed and
2192this is not reversible. To help prevent accidents,
2193.I mdadm
2194requires that the size of the array be decreased first with
2195.BR "mdadm --grow --array-size" .
2196This is a reversible change which simply makes the end of the array
2197inaccessible. The integrity of any data can then be checked before
2198the non-reversible reduction in the number of devices is request.
2ae555c3 2199
cd19c0cf
JR
2200When relocating the first few stripes on a RAID5 or RAID6, it is not
2201possible to keep the data on disk completely consistent and
2202crash-proof. To provide the required safety, mdadm disables writes to
2203the array while this "critical section" is reshaped, and takes a
2204backup of the data that is in that section. For grows, this backup may be
2205stored in any spare devices that the array has, however it can also be
2206stored in a separate file specified with the
7e23fc43 2207.B \-\-backup\-file
cd19c0cf
JR
2208option, and is required to be specified for shrinks, RAID level
2209changes and layout changes. If this option is used, and the system
2210does crash during the critical period, the same file must be passed to
7e23fc43 2211.B \-\-assemble
cd19c0cf
JR
2212to restore the backup and reassemble the array. When shrinking rather
2213than growing the array, the reshape is done from the end towards the
2214beginning, so the "critical section" is at the end of the reshape.
2ae555c3 2215
f24e2d6c
N
2216.SS LEVEL CHANGES
2217
2218Changing the RAID level of any array happens instantaneously. However
cd19c0cf 2219in the RAID5 to RAID6 case this requires a non-standard layout of the
f24e2d6c 2220RAID6 data, and in the RAID6 to RAID5 case that non-standard layout is
cd19c0cf 2221required before the change can be accomplished. So while the level
f24e2d6c 2222change is instant, the accompanying layout change can take quite a
cd19c0cf
JR
2223long time. A
2224.B \-\-backup\-file
2225is required. If the array is not simultaneously being grown or
2226shrunk, so that the array size will remain the same - for example,
2227reshaping a 3-drive RAID5 into a 4-drive RAID6 - the backup file will
2228be used not just for a "cricital section" but throughout the reshape
2229operation, as described below under LAYOUT CHANGES.
f24e2d6c
N
2230
2231.SS CHUNK-SIZE AND LAYOUT CHANGES
2232
2233Changing the chunk-size of layout without also changing the number of
2234devices as the same time will involve re-writing all blocks in-place.
2235To ensure against data loss in the case of a crash, a
2236.B --backup-file
2237must be provided for these changes. Small sections of the array will
cd19c0cf
JR
2238be copied to the backup file while they are being rearranged. This
2239means that all the data is copied twice, once to the backup and once
2240to the new layout on the array, so this type of reshape will go very
2241slowly.
f24e2d6c
N
2242
2243If the reshape is interrupted for any reason, this backup file must be
cd19c0cf 2244made available to
f24e2d6c
N
2245.B "mdadm --assemble"
2246so the array can be reassembled. Consequently the file cannot be
2247stored on the device being reshaped.
2248
2249
2ae555c3
NB
2250.SS BITMAP CHANGES
2251
2252A write-intent bitmap can be added to, or removed from, an active
93e790af 2253array. Either internal bitmaps, or bitmaps stored in a separate file,
fe80f49b 2254can be added. Note that if you add a bitmap stored in a file which is
e0fe762a 2255in a filesystem that is on the RAID array being affected, the system
fe80f49b
NB
2256will deadlock. The bitmap must be on a separate filesystem.
2257
8382f19b
NB
2258.SH INCREMENTAL MODE
2259
2260.HP 12
2261Usage:
7e23fc43
PS
2262.B mdadm \-\-incremental
2263.RB [ \-\-run ]
2264.RB [ \-\-quiet ]
8382f19b
NB
2265.I component-device
2266.HP 12
2267Usage:
29ba4804
N
2268.B mdadm \-\-incremental \-\-fail
2269.I component-device
2270.HP 12
2271Usage:
7e6140e6 2272.B mdadm \-\-incremental \-\-rebuild\-map
8382f19b
NB
2273.HP 12
2274Usage:
7e23fc43 2275.B mdadm \-\-incremental \-\-run \-\-scan
8382f19b 2276
8382f19b
NB
2277.PP
2278This mode is designed to be used in conjunction with a device
2279discovery system. As devices are found in a system, they can be
2280passed to
7e23fc43 2281.B "mdadm \-\-incremental"
8382f19b
NB
2282to be conditionally added to an appropriate array.
2283
29ba4804
N
2284Conversely, it can also be used with the
2285.B \-\-fail
2286flag to do just the opposite and find whatever array a particular device
2287is part of and remove the device from that array.
2288
8fd8d9c4
N
2289If the device passed is a
2290.B CONTAINER
2291device created by a previous call to
2292.IR mdadm ,
2293then rather than trying to add that device to an array, all the arrays
2294described by the metadata of the container will be started.
2295
8382f19b
NB
2296.I mdadm
2297performs a number of tests to determine if the device is part of an
93e790af 2298array, and which array it should be part of. If an appropriate array
8382f19b
NB
2299is found, or can be created,
2300.I mdadm
2301adds the device to the array and conditionally starts the array.
2302
2303Note that
2304.I mdadm
2305will only add devices to an array which were previously working
2306(active or spare) parts of that array. It does not currently support
2307automatic inclusion of a new drive as a spare in some array.
2308
8382f19b
NB
2309The tests that
2310.I mdadm
2311makes are as follow:
2312.IP +
2313Is the device permitted by
2314.BR mdadm.conf ?
2315That is, is it listed in a
2316.B DEVICES
2317line in that file. If
2318.B DEVICES
2319is absent then the default it to allow any device. Similar if
2320.B DEVICES
2321contains the special word
2322.B partitions
2323then any device is allowed. Otherwise the device name given to
2324.I mdadm
2325must match one of the names or patterns in a
2326.B DEVICES
2327line.
2328
2329.IP +
2330Does the device have a valid md superblock. If a specific metadata
2331version is request with
7e23fc43 2332.B \-\-metadata
8382f19b 2333or
7e23fc43 2334.B \-e
8382f19b
NB
2335then only that style of metadata is accepted, otherwise
2336.I mdadm
2337finds any known version of metadata. If no
2338.I md
2339metadata is found, the device is rejected.
2340
d1302dd8 2341.ig
8382f19b
NB
2342.IP +
2343Does the metadata match an expected array?
2344The metadata can match in two ways. Either there is an array listed
2345in
2346.B mdadm.conf
2347which identifies the array (either by UUID, by name, by device list,
93e790af 2348or by minor-number), or the array was created with a
8382f19b 2349.B homehost
93e790af 2350specified and that
8382f19b 2351.B homehost
93e790af 2352matches the one in
8382f19b
NB
2353.B mdadm.conf
2354or on the command line.
2355If
2356.I mdadm
2357is not able to positively identify the array as belonging to the
2358current host, the device will be rejected.
d1302dd8 2359..
8382f19b 2360
8382f19b 2361.I mdadm
93e790af 2362keeps a list of arrays that it has partially assembled in
8382f19b
NB
2363.B /var/run/mdadm/map
2364(or
2365.B /var/run/mdadm.map
e0fe762a
N
2366if the directory doesn't exist. Or maybe even
2367.BR /dev/.mdadm.map ).
2368If no array exists which matches
8382f19b
NB
2369the metadata on the new device,
2370.I mdadm
2371must choose a device name and unit number. It does this based on any
2372name given in
2373.B mdadm.conf
2374or any name information stored in the metadata. If this name
2375suggests a unit number, that number will be used, otherwise a free
2376unit number will be chosen. Normally
2377.I mdadm
2378will prefer to create a partitionable array, however if the
2379.B CREATE
2380line in
2381.B mdadm.conf
2382suggests that a non-partitionable array is preferred, that will be
2383honoured.
2384
e0fe762a
N
2385If the array is not found in the config file and its metadata does not
2386identify it as belonging to the "homehost", then
2387.I mdadm
2388will choose a name for the array which is certain not to conflict with
2389any array which does belong to this host. It does this be adding an
2390underscore and a small number to the name preferred by the metadata.
2391
8382f19b
NB
2392Once an appropriate array is found or created and the device is added,
2393.I mdadm
2394must decide if the array is ready to be started. It will
2395normally compare the number of available (non-spare) devices to the
2396number of devices that the metadata suggests need to be active. If
2397there are at least that many, the array will be started. This means
2398that if any devices are missing the array will not be restarted.
2399
2400As an alternative,
7e23fc43 2401.B \-\-run
8382f19b 2402may be passed to
51ac42e3 2403.I mdadm
8382f19b 2404in which case the array will be run as soon as there are enough
e0fe762a
N
2405devices present for the data to be accessible. For a RAID1, that
2406means one device will start the array. For a clean RAID5, the array
8382f19b
NB
2407will be started as soon as all but one drive is present.
2408
93e790af 2409Note that neither of these approaches is really ideal. If it can
8382f19b
NB
2410be known that all device discovery has completed, then
2411.br
7e23fc43 2412.B " mdadm \-IRs"
8382f19b
NB
2413.br
2414can be run which will try to start all arrays that are being
2415incrementally assembled. They are started in "read-auto" mode in
2416which they are read-only until the first write request. This means
2417that no metadata updates are made and no attempt at resync or recovery
2418happens. Further devices that are found before the first write can
2419still be added safely.
2420
5545fa6d
DW
2421.SH ENVIRONMENT
2422This section describes environment variables that affect how mdadm
2423operates.
2424
2425.TP
2426.B MDADM_NO_MDMON
2427Setting this value to 1 will prevent mdadm from automatically launching
2428mdmon. This variable is intended primarily for debugging mdadm/mdmon.
2429
8fd8d9c4
N
2430.TP
2431.B MDADM_NO_UDEV
2432Normally,
2433.I mdadm
2434does not create any device nodes in /dev, but leaves that task to
2435.IR udev .
2436If
2437.I udev
2438appears not to be configured, or if this environment variable is set
2439to '1', the
2440.I mdadm
2441will create and devices that are needed.
2442
2d465520
NB
2443.SH EXAMPLES
2444
7e23fc43 2445.B " mdadm \-\-query /dev/name-of-device"
2d465520 2446.br
e0fe762a 2447This will find out if a given device is a RAID array, or is part of
5787fa49 2448one, and will provide brief information about the device.
2d465520 2449
7e23fc43 2450.B " mdadm \-\-assemble \-\-scan"
2d465520 2451.br
93e790af 2452This will assemble and start all arrays listed in the standard config
5787fa49 2453file. This command will typically go in a system startup file.
2d465520 2454
7e23fc43 2455.B " mdadm \-\-stop \-\-scan"
5787fa49 2456.br
93e790af 2457This will shut down all arrays that can be shut down (i.e. are not
19f8b8fc 2458currently in use). This will typically go in a system shutdown script.
2d465520 2459
7e23fc43 2460.B " mdadm \-\-follow \-\-scan \-\-delay=120"
2d465520 2461.br
5787fa49
NB
2462If (and only if) there is an Email address or program given in the
2463standard config file, then
2464monitor the status of all arrays listed in that file by
2465polling them ever 2 minutes.
2d465520 2466
7e23fc43 2467.B " mdadm \-\-create /dev/md0 \-\-level=1 \-\-raid\-devices=2 /dev/hd[ac]1"
2d465520 2468.br
5787fa49 2469Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 2470
2d465520 2471.br
7e23fc43 2472.B " echo 'DEVICE /dev/hd*[0\-9] /dev/sd*[0\-9]' > mdadm.conf"
2d465520 2473.br
7e23fc43 2474.B " mdadm \-\-detail \-\-scan >> mdadm.conf"
2d465520 2475.br
5787fa49
NB
2476This will create a prototype config file that describes currently
2477active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
2478This file should be reviewed before being used as it may
2479contain unwanted detail.
2480
7e23fc43 2481.B " echo 'DEVICE /dev/hd[a\-z] /dev/sd*[a\-z]' > mdadm.conf"
2d465520 2482.br
7e23fc43 2483.B " mdadm \-\-examine \-\-scan \-\-config=mdadm.conf >> mdadm.conf"
93e790af
SW
2484.br
2485This will find arrays which could be assembled from existing IDE and
2486SCSI whole drives (not partitions), and store the information in the
5787fa49 2487format of a config file.
2d465520
NB
2488This file is very likely to contain unwanted detail, particularly
2489the
2490.B devices=
5787fa49
NB
2491entries. It should be reviewed and edited before being used as an
2492actual config file.
2d465520 2493
7e23fc43 2494.B " mdadm \-\-examine \-\-brief \-\-scan \-\-config=partitions"
2d465520 2495.br
7e23fc43 2496.B " mdadm \-Ebsc partitions"
5787fa49
NB
2497.br
2498Create a list of devices by reading
2499.BR /proc/partitions ,
2500scan these for RAID superblocks, and printout a brief listing of all
93e790af 2501that were found.
2d465520 2502
7e23fc43 2503.B " mdadm \-Ac partitions \-m 0 /dev/md0"
2d465520 2504.br
5787fa49
NB
2505Scan all partitions and devices listed in
2506.BR /proc/partitions
2507and assemble
2508.B /dev/md0
2509out of all such devices with a RAID superblock with a minor number of 0.
2d465520 2510
7e23fc43 2511.B " mdadm \-\-monitor \-\-scan \-\-daemonise > /var/run/mdadm"
d013a55e
NB
2512.br
2513If config file contains a mail address or alert program, run mdadm in
2514the background in monitor mode monitoring all md devices. Also write
2515pid of mdadm daemon to
2516.BR /var/run/mdadm .
2517
7e23fc43 2518.B " mdadm \-Iq /dev/somedevice"
8382f19b
NB
2519.br
2520Try to incorporate newly discovered device into some array as
2521appropriate.
2522
7e6140e6 2523.B " mdadm \-\-incremental \-\-rebuild\-map \-\-run \-\-scan"
8382f19b
NB
2524.br
2525Rebuild the array map from any current arrays, and then start any that
2526can be started.
2527
b80da661
NB
2528.B " mdadm /dev/md4 --fail detached --remove detached"
2529.br
2530Any devices which are components of /dev/md4 will be marked as faulty
2531and then remove from the array.
2532
f24e2d6c
N
2533.B " mdadm --grow /dev/md4 --level=6 --backup-file=/root/backup-md4
2534.br
2535The array
2536.B /dev/md4
2537which is currently a RAID5 array will be converted to RAID6. There
2538should normally already be a spare drive attached to the array as a
2539RAID6 needs one more drive than a matching RAID5.
2540
8fd8d9c4
N
2541.B " mdadm --create /dev/md/ddf --metadata=ddf --raid-disks 6 /dev/sd[a-f]"
2542.br
2543Create a DDF array over 6 devices.
2544
2545.B " mdadm --create /dev/md/home -n3 -l5 -z 30000000 /dev/md/ddf"
2546.br
e0fe762a 2547Create a RAID5 array over any 3 devices in the given DDF set. Use
8fd8d9c4
N
2548only 30 gigabytes of each device.
2549
2550.B " mdadm -A /dev/md/ddf1 /dev/sd[a-f]"
2551.br
2552Assemble a pre-exist ddf array.
2553
2554.B " mdadm -I /dev/md/ddf1"
2555.br
2556Assemble all arrays contained in the ddf array, assigning names as
2557appropriate.
2558
7e23fc43 2559.B " mdadm \-\-create \-\-help"
2d465520 2560.br
2ae555c3 2561Provide help about the Create mode.
2d465520 2562
7e23fc43 2563.B " mdadm \-\-config \-\-help"
5787fa49
NB
2564.br
2565Provide help about the format of the config file.
2d465520 2566
7e23fc43 2567.B " mdadm \-\-help"
5787fa49
NB
2568.br
2569Provide general help.
cd29a5c8 2570
cd29a5c8
NB
2571.SH FILES
2572
2573.SS /proc/mdstat
2574
2ae555c3
NB
2575If you're using the
2576.B /proc
cd29a5c8
NB
2577filesystem,
2578.B /proc/mdstat
2d465520 2579lists all active md devices with information about them.
51ac42e3 2580.I mdadm
2d465520 2581uses this to find arrays when
7e23fc43 2582.B \-\-scan
2d465520
NB
2583is given in Misc mode, and to monitor array reconstruction
2584on Monitor mode.
2585
9a9dab36 2586.SS /etc/mdadm.conf
cd29a5c8 2587
11a3e71d
NB
2588The config file lists which devices may be scanned to see if
2589they contain MD super block, and gives identifying information
2590(e.g. UUID) about known MD arrays. See
2591.BR mdadm.conf (5)
2592for more details.
cd29a5c8 2593
8382f19b
NB
2594.SS /var/run/mdadm/map
2595When
7e23fc43 2596.B \-\-incremental
93e790af 2597mode is used, this file gets a list of arrays currently being created.
8382f19b
NB
2598If
2599.B /var/run/mdadm
2600does not exist as a directory, then
2601.B /var/run/mdadm.map
e0fe762a
N
2602is used instead. If
2603.B /var/run
2604is not available (as may be the case during early boot),
2605.B /dev/.mdadm.map
2606is used on the basis that
2607.B /dev
2608is usually available very early in boot.
8382f19b 2609
48f7b27a
NB
2610.SH DEVICE NAMES
2611
48f7b27a 2612.I mdadm
8fd8d9c4
N
2613understand two sorts of names for array devices.
2614
2615The first is the so-called 'standard' format name, which matches the
2616names used by the kernel and which appear in
2617.IR /proc/mdstat .
2618
2619The second sort can be freely chosen, but must reside in
2620.IR /dev/md/ .
2621When giving a device name to
2622.I mdadm
2623to create or assemble an array, either full path name such as
2624.I /dev/md0
2625or
2626.I /dev/md/home
2627can be given, or just the suffix of the second sort of name, such as
2628.I home
2629can be given.
2630
2631When
2632.I mdadm
e0fe762a
N
2633chooses device names during auto-assembly or incremental assembly, it
2634will sometimes add a small sequence number to the end of the name to
2635avoid conflicted between multiple arrays that have the same name. If
8fd8d9c4
N
2636.I mdadm
2637can reasonably determine that the array really is meant for this host,
2638either by a hostname in the metadata, or by the presence of the array
e0fe762a
N
2639in /etc/mdadm.conf, then it will leave off the suffix if possible.
2640Also if the homehost is specified as
2641.B <ignore>
2642.I mdadm
2643will only use a suffix if a different array of the same name already
2644exists or is listed in the config file.
48f7b27a
NB
2645
2646The standard names for non-partitioned arrays (the only sort of md
8fd8d9c4 2647array available in 2.4 and earlier) are of the form
48f7b27a
NB
2648.IP
2649/dev/mdNN
48f7b27a
NB
2650.PP
2651where NN is a number.
2652The standard names for partitionable arrays (as available from 2.6
8fd8d9c4 2653onwards) are of the form
48f7b27a 2654.IP
48f7b27a
NB
2655/dev/md_dNN
2656.PP
2657Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
8fd8d9c4
N
2658.PP
2659From kernel version, 2.6.28 the "non-partitioned array" can actually
2660be partitioned. So the "md_dNN" names are no longer needed, and
2661partitions such as "/dev/mdNNpXX" are possible.
52826846 2662
2d465520 2663.SH NOTE
51ac42e3 2664.I mdadm
2d465520 2665was previously known as
51ac42e3 2666.IR mdctl .
a9d69660 2667.P
51ac42e3 2668.I mdadm
a9d69660 2669is completely separate from the
51ac42e3 2670.I raidtools
a9d69660
NB
2671package, and does not use the
2672.I /etc/raidtab
2673configuration file at all.
2674
52826846 2675.SH SEE ALSO
75f74377 2676For further information on mdadm usage, MD and the various levels of
3cdfb6a7 2677RAID, see:
3cdfb6a7 2678.IP
11cd8b79 2679.B http://linux\-raid.osdl.org/
75f74377
DG
2680.PP
2681(based upon Jakob \(/Ostergaard's Software\-RAID.HOWTO)
e43d0cda
NB
2682.\".PP
2683.\"for new releases of the RAID driver check out:
2684.\"
2685.\".IP
e0fe762a 2686.\".UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
e43d0cda
NB
2687.\"ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
2688.\".UE
2689.\".PP
2690.\"or
2691.\".IP
2692.\".UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2693.\"http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2694.\".UE
cd29a5c8 2695.PP
2ae555c3 2696The latest version of
a9d69660
NB
2697.I mdadm
2698should always be available from
cd29a5c8 2699.IP
11cd8b79
N
2700.B http://www.kernel.org/pub/linux/utils/raid/mdadm/
2701.PP
2702Related man pages:
cd29a5c8 2703.PP
e0fe762a 2704.IR mdmon (8),
a9d69660
NB
2705.IR mdadm.conf (5),
2706.IR md (4).
56eb10c0 2707.PP
52826846
NB
2708.IR raidtab (5),
2709.IR raid0run (8),
2710.IR raidstop (8),
a9d69660 2711.IR mkraid (8).