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