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