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