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