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