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