]> git.ipfire.org Git - thirdparty/mdadm.git/blame_incremental - mdadm.8
Change MAJOR() etc to major() etc
[thirdparty/mdadm.git] / mdadm.8
... / ...
CommitLineData
1.\" -*- nroff -*-
2.TH MDADM 8 "" v1.8.0
3.SH NAME
4mdadm \- manage MD devices
5.I aka
6Linux Software Raid.
7
8.SH SYNOPSIS
9
10.BI mdadm " [mode] <raiddevice> [options] <component-devices>"
11
12.SH DESCRIPTION
13RAID devices are virtual devices created from two or more
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.
17Some RAID levels include redundancy and so can survive some degree of
18device failure.
19
20Linux Software RAID devices are implemented through the md (Multiple
21Devices) device driver.
22
23Currently, Linux supports
24.B LINEAR
25md devices,
26.B RAID0
27(striping),
28.B RAID1
29(mirroring),
30.BR RAID4 ,
31.BR RAID5 ,
32.BR RAID6 ,
33.BR MULTIPATH ,
34and
35.BR FAULTY .
36
37.B MULTIPATH is not a Software RAID mechanism, but does involve
38multiple devices. For
39.B MULTIPATH
40each device is a path to one common physical storage device.
41
42.B FAULTY is also no true RAID, and it only involves one device. It
43provides a layer over a true device that can be used to inject faults.
44
45.B mdadm
46is a program that can be used to create, manage, and monitor
47MD devices. As
48such it provides a similar set of functionality to the
49.B raidtools
50packages.
51The key differences between
52.B mdadm
53and
54.B raidtools
55are:
56.IP \(bu 4
57.B mdadm
58is a single program and not a collection of programs.
59.IP \(bu 4
60.B mdadm
61can perform (almost) all of its functions without having a
62configuration file and does not use one by default. Also
63.B mdadm
64helps with management of the configuration
65file.
66.IP \(bu 4
67.B mdadm
68can provide information about your arrays (through Query, Detail, and Examine)
69that
70.B raidtools
71cannot.
72.P
73.I mdadm
74does not use
75.IR /etc/raidtab ,
76the
77.B raidtools
78configuration file, at all. It has a different configuration file
79with a different format and an different purpose.
80
81.SH MODES
82mdadm has 7 major modes of operation:
83.TP
84.B Assemble
85Assemble the parts of a previously created
86array into an active array. Components can be explicitly given
87or can be searched for.
88.B mdadm
89checks that the components
90do form a bona fide array, and can, on request, fiddle superblock
91information so as to assemble a faulty array.
92
93.TP
94.B Build
95Build a legacy array without per-device superblocks.
96
97.TP
98.B Create
99Create a new array with per-device superblocks.
100'''It can progress
101'''in several step create-add-add-run or it can all happen with one command.
102
103.TP
104.B Manage
105This is for doing things to specific components of an array such as
106adding new spares and removing faulty devices.
107
108.TP
109.B Misc
110This mode allows operations on independent devices such as examine MD
111superblocks, erasing old superblocks and stopping active arrays.
112
113.TP
114.B "Follow or Monitor"
115Monitor one or more md devices and act on any state changes. This is
116only meaningful for raid1, 4, 5, 6 or multipath arrays as
117only these have interesting state. raid0 or linear never have
118missing, spare, or failed drives, so there is nothing to monitor.
119
120.TP
121.B "Grow"
122Grow (or shrink) an array, or otherwise reshape it in some way.
123Currently supported growth options including changing the active size
124of componenet devices in RAID level 1/4/5/6 and changing the number of
125active devices in RAID1.
126
127.SH OPTIONS
128
129Available options are:
130
131.TP
132.BR -A ", " --assemble
133Assemble a pre-existing array.
134
135.TP
136.BR -B ", " --build
137Build a legacy array without superblocks.
138
139.TP
140.BR -C ", " --create
141Create a new array.
142
143.TP
144.BR -Q ", " --query
145Examine a device to see
146(1) if it is an md device and (2) if it is a component of an md
147array.
148Information about what is discovered is presented.
149
150.TP
151.BR -D ", " --detail
152Print detail of one or more md devices.
153
154.TP
155.BR -E ", " --examine
156Print content of md superblock on device(s).
157
158.TP
159.BR -F ", " --follow ", " --monitor
160Select
161.B Monitor
162mode.
163
164.TP
165.BR -G ", " --grow
166Change the size or shape of an active array.
167
168.TP
169.BR -h ", " --help
170Display help message or, after above option, mode specific help
171message.
172
173.TP
174.B --help-options
175Display more detailed help about command line parsing and some commonly
176used options.
177
178.TP
179.BR -V ", " --version
180Print version information for mdadm.
181
182.TP
183.BR -v ", " --verbose
184Be more verbose about what is happening.
185
186.TP
187.BR -b ", " --brief
188Be less verbose. This is used with
189.B --detail
190and
191.BR --examine .
192
193.TP
194.BR -f ", " --force
195Be more forceful about certain operations. See the various modes of
196the exact meaning of this option in different contexts.
197
198.TP
199.BR -c ", " --config=
200Specify the config file. Default is
201.BR /etc/mdadm.conf .
202If the config file given is
203.B partitions
204then nothing will be read, but
205.I mdadm
206will act as though the config file contained exactly
207.B "DEVICE partitions"
208and will read
209.B /proc/partitions
210to find a list of devices to scan.
211If the word
212.B none
213is given for the config file, then
214.I mdadm
215will act as though the config file were empty.
216
217.TP
218.BR -s ", " --scan
219scan config file or
220.B /proc/mdstat
221for missing information.
222In general, this option gives
223.B mdadm
224permission to get any missing information, like component devices,
225array devices, array identities, and alert destination from the
226configuration file:
227.BR /etc/mdadm.conf .
228One exception is MISC mode when using
229.B --detail
230or
231.B --stop
232in which case
233.B --scan
234says to get a list of array devices from
235.BR /proc/mdstat .
236
237.SH For create or build:
238
239.TP
240.BR -c ", " --chunk=
241Specify chunk size of kibibytes. The default is 64.
242
243.TP
244.BR --rounding=
245Specify rounding factor for linear array (==chunk size)
246
247.TP
248.BR -l ", " --level=
249Set raid level. When used with
250.IR --create ,
251options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
252raid5, 5, raid6, 6, multipath, mp, fautly. Obviously some of these are synonymous.
253
254When used with
255.IR --build ,
256only linear, raid0, 0, stripe are valid.
257
258.TP
259.BR -p ", " --parity=
260Set raid5 parity algorithm. Options are:
261left-asymmetric,
262left-symmetric,
263right-asymmetric,
264right-symmetric,
265la, ra, ls, rs. The default is left-symmetric.
266
267This option is also used to set the failure mode for
268.IR faulty .
269The options are:
270write-transient,
271wt,
272read-transient,
273rt,
274write-presistent,
275wp,
276read-persistent,
277rp,
278write-all,
279read-fixable,
280rf,
281clear,
282flush,
283none.
284
285Each mode can be followed by a number which is used as a period
286between fault generation. Without a number, the fault is generated
287once on the first relevant request. With a number, the fault will be
288generated after that many request, and will continue to be generated
289every time the period elapses.
290
291Multiple failure modes can be current simultaneously by using the
292"--grow" option to set subsequent failure modes.
293
294"clear" or "none" will remove any pending or periodic failure modes,
295and "flush" will clear any persistant faults.
296
297To set the parity with "--grow", the level of the array ("faulty")
298must be specified before the fault mode is specified.
299
300.TP
301.BR --layout=
302same as --parity
303
304.TP
305.BR -n ", " --raid-devices=
306Specify the number of active devices in the array. This, plus the
307number of spare devices (see below) must equal the number of
308.I component-devices
309(including "\fBmissing\fP" devices)
310that are listed on the command line for
311.BR --create .
312Setting a value of 1 is probably
313a mistake and so requires that
314.B --force
315be specified first. A value of 1 will then be allowed for linear,
316multipath, raid0 and raid1. It is never allowed for raid4 or raid5.
317.br
318This number can only be changed using
319.B --grow
320for RAID1 arrays, and only on kernels which provide necessary support.
321
322.TP
323.BR -x ", " --spare-devices=
324Specify the number of spare (eXtra) devices in the initial array.
325Spares can also be added
326and removed later. The number of component devices listed
327on the command line must equal the number of raid devices plus the
328number of spare devices.
329
330
331.TP
332.BR -z ", " --size=
333Amount (in Kibibytes) of space to use from each drive in RAID1/4/5/6.
334This must be a multiple of the chunk size, and must leave about 128Kb
335of space at the end of the drive for the RAID superblock.
336If this is not specified
337(as it normally is not) the smallest drive (or partition) sets the
338size, though if there is a variance among the drives of greater than 1%, a warning is
339issued.
340
341This value can be set with
342.B --grow
343for RAID level 1/4/5/6. If the array was created with a size smaller
344than the currently active drives, the extra space can be accessed
345using
346.BR --grow .
347
348.TP
349.BR --assume-clean
350Tell
351.I mdadm
352that the array pre-existed and is known to be clean. This is only
353really useful for Building RAID1 array. Only use this if you really
354know what you are doing. This is currently only supported for --build.
355
356.TP
357.BR -R ", " --run
358Insist that
359.I mdadm
360run the array, even if some of the components
361appear to be active in another array or filesystem. Normally
362.I mdadm
363will ask for confirmation before including such components in an
364array. This option causes that question to be suppressed.
365
366.TP
367.BR -f ", " --force
368Insist that
369.I mdadm
370accept the geometry and layout specified without question. Normally
371.I mdadm
372will not allow creation of an array with only one device, and will try
373to create a raid5 array with one missing drive (as this makes the
374initial resync work faster). With
375.BR --force ,
376.I mdadm
377will not try to be so clever.
378
379.TP
380.BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
381Instruct mdadm to create the device file if needed, and to allocate
382an unused minor number. "yes" or "md" causes a non-partitionable array
383to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
384later) to be used. The argumentment can also come immediately after
385"-a". e.g. "-ap".
386
387For partitionable arrays,
388.I mdadm
389will create the device file for the whole array and for the first 4
390partitions. A different number of partitions can be specified at the
391end of this option (e.g.
392.BR --auto=p7 ).
393If the device name ends with a digit, the partition names add an
394underscore, a 'p', and a number, e.g. "/dev/home1_p3". If there is no
395trailing digit, then the partition names just have a number added,
396e.g. "/dev/scratch3".
397
398.SH For assemble:
399
400.TP
401.BR -u ", " --uuid=
402uuid of array to assemble. Devices which don't have this uuid are
403excluded
404
405.TP
406.BR -m ", " --super-minor=
407Minor number of device that array was created for. Devices which
408don't have this minor number are excluded. If you create an array as
409/dev/md1, then all superblocks will contain the minor number 1, even if
410the array is later assembled as /dev/md2.
411
412Giving the literal word "dev" for
413.B --super-minor
414will cause
415.I mdadm
416to use the minor number of the md device that is being assembled.
417e.g. when assembling
418.BR /dev/md0 ,
419.M --super-minor=dev
420will look for super blocks with a minor number of 0.
421
422.TP
423.BR -f ", " --force
424Assemble the array even if some superblocks appear out-of-date
425
426.TP
427.BR -R ", " --run
428Attempt to start the array even if fewer drives were given than are
429needed for a full array. Normally if not all drives are found and
430.B --scan
431is not used, then the array will be assembled but not started.
432With
433.B --run
434an attempt will be made to start it anyway.
435
436.TP
437.BR -a ", " "--auto{=no,yes,md,mdp,part}"
438See this option under Create and Build options.
439
440.TP
441.BR -U ", " --update=
442Update the superblock on each device while assembling the array. The
443argument given to this flag can be one of
444.BR sparc2.2 ,
445.BR summaries ,
446.BR resync ,
447or
448.BR super-minor .
449
450The
451.B sparc2.2
452option will adjust the superblock of an array what was created on a Sparc
453machine running a patched 2.2 Linux kernel. This kernel got the
454alignment of part of the superblock wrong. You can use the
455.B "--examine --sparc2.2"
456option to
457.I mdadm
458to see what effect this would have.
459
460The
461.B super-minor
462option will update the
463.B "prefered minor"
464field on each superblock to match the minor number of the array being
465assembled. This is not needed on 2.6 and later kernels as they make
466this adjustment automatically.
467
468The
469.B resync
470option will cause the array to be marked
471.I dirty
472meaning that any redundancy in the array (e.g. parity for raid5,
473copies for raid1) may be incorrect. This will cause the raid system
474to perform a "resync" pass to make sure that all redundant information
475is correct.
476
477The
478.B summaries
479option will correct the summaries in the superblock. That is the
480counts of total, working, active, failed, and spare devices.
481
482.SH For Manage mode:
483
484.TP
485.BR -a ", " --add
486'''add, or
487hotadd listed devices.
488
489.TP
490.BR -r ", " --remove
491remove listed devices. They must not be active. i.e. they should
492be failed or spare devices.
493
494.TP
495.BR -f ", " --fail
496mark listed devices as faulty.
497
498.TP
499.BR --set-faulty
500same as --fail.
501
502.SH For Examine mode:
503
504.TP
505.B --sparc2.2
506In an array was created on a 2.2 Linux kernel patched with RAID
507support, the superblock will have been created incorrectly, or at
508least incompatibly with 2.4 and later kernels. Using the
509.B --sparc2.2
510flag with
511.B --examine
512will fix the superblock before displaying it. If this appears to do
513the right thing, then the array can be successfully assembled using
514.BR "--assemble --update=sparc2.2" .
515
516.SH For Misc mode:
517
518.TP
519.BR -R ", " --run
520start a partially built array.
521
522.TP
523.BR -S ", " --stop
524deactivate array, releasing all resources.
525
526.TP
527.BR -o ", " --readonly
528mark array as readonly.
529
530.TP
531.BR -w ", " --readwrite
532mark array as readwrite.
533
534.TP
535.B --zero-superblock
536If the device contains a valid md superblock, the block is
537over-written with zeros. With
538--force
539the block where the superblock would be is over-written even if it
540doesn't appear to be valid.
541
542.TP
543.BR -t ", " --test
544When used with
545.BR --detail ,
546the exit status of
547.I mdadm
548is set to reflect the status of the device.
549
550.SH For Monitor mode:
551.TP
552.BR -m ", " --mail
553Give a mail address to send alerts to.
554
555.TP
556.BR -p ", " --program ", " --alert
557Give a program to be run whenever an event is detected.
558
559.TP
560.BR -d ", " --delay
561Give a delay in seconds.
562.B mdadm
563polls the md arrays and then waits this many seconds before polling
564again. The default is 60 seconds.
565
566.TP
567.BR -f ", " --daemonise
568Tell
569.B mdadm
570to run as a background daemon if it decides to monitor anything. This
571causes it to fork and run in the child, and to disconnect form the
572terminal. The process id of the child is written to stdout.
573This is useful with
574.B --scan
575which will only continue monitoring if a mail address or alert program
576is found in the config file.
577
578.TP
579.BR -i ", " --pid-file
580When
581.B mdadm
582is running in daemon mode, write the pid of the daemon process to
583the specified file, instead of printing it on standard output.
584
585.TP
586.BR -1 ", " --oneshot
587Check arrays only once. This will generate
588.B NewArray
589events and more significantly
590.B DegradedArray
591events. Running
592.in +5
593.B " mdadm --monitor --scan -1"
594.in -5
595from a cron script will ensure regular notification of any degraded arrays.
596
597.TP
598.BR -t ", " --test
599Generate a
600.B TestMessage
601alert for every array found at startup. This alert gets mailed and
602passed to the alert program. This can be used for testing that alert
603message to get through successfully.
604
605.SH ASSEMBLE MODE
606
607.HP 12
608Usage:
609.B mdadm --assemble
610.I md-device options-and-component-devices...
611.HP 12
612Usage:
613.B mdadm --assemble --scan
614.I md-devices-and-options...
615.HP 12
616Usage:
617.B mdadm --assemble --scan
618.I options...
619
620.PP
621This usage assembles one or more raid arrays from pre-existing components.
622For each array, mdadm needs to know the md device, the identity of the
623array, and a number of component-devices. These can be found in a number of ways.
624
625In the first usage example (without the
626.BR --scan )
627the first device given is the md device.
628In the second usage example, all devices listed are treated as md
629devices and assembly is attempted.
630In the third (where no devices are listed) all md devices that are
631listed in the configuration file are assembled.
632
633If precisely one device is listed, but
634.B --scan
635is not given, then
636.I mdadm
637acts as though
638.B --scan
639was given and identify information is extracted from the configuration file.
640
641The identity can be given with the
642.B --uuid
643option, with the
644.B --super-minor
645option, can be found in the config file, or will be taken from the
646super block on the first component-device listed on the command line.
647
648Devices can be given on the
649.B --assemble
650command line or in the config file. Only devices which have an md
651superblock which contains the right identity will be considered for
652any array.
653
654The config file is only used if explicitly named with
655.B --config
656or requested with (a possibly implicit)
657.B --scan.
658In the later case,
659.B /etc/mdadm.conf
660is used.
661
662If
663.B --scan
664is not given, then the config file will only be used to find the
665identity of md arrays.
666
667Normally the array will be started after it is assembled. However if
668.B --scan
669is not given and insufficient drives were listed to start a complete
670(non-degraded) array, then the array is not started (to guard against
671usage errors). To insist that the array be started in this case (as
672may work for RAID1, 4, 5 or 6), give the
673.B --run
674flag.
675
676If an
677.B auto
678option is given, either on the command line (--auto) or in the
679configuration file (e.g. auto=part), then
680.I mdadm
681will create the md device if necessary or will re-create it if it
682doesn't look usable as it is.
683
684This can be useful for handling partitioned devices (which don't have
685a stable device number - it can change after a reboot) and when using
686"udev" to manage your
687.B /dev
688tree (udev cannot handle md devices because of the unusual device
689initialisation conventions).
690
691If the option to "auto" is "mdp" or "part" or (on the command line
692only) "p", then mdadm will create a partitionable array, using the
693first free one that is not inuse, and does not already have an entry
694in /dev (apart from numeric /dev/md* entries).
695
696If the option to "auto" is "yes" or "md" or (on the command line)
697nothing, then mdadm will create a traditional, non-partitionable md
698array.
699
700It is expected that the "auto" functionality will be used to create
701device entries with meaningful names such as "/dev/md/home" or
702"/dev/md/root", rather than names based on the numerical array number.
703
704When using this option to create a partitionable array, the device
705files for the first 4 partitions are also created. If a different
706number is required it can be simply appended to the auto option.
707e.g. "auto=part8". Partition names are created by appending a digit
708string to the device name, with an intervening "_p" if the device name
709ends with a digit.
710
711The
712.B --auto
713option is also available in Build and Create modes. As those modes do
714not use a config file, the "auto=" config option does not apply to
715these modes.
716
717.SH BUILD MODE
718
719.HP 12
720Usage:
721.B mdadm --build
722.I device
723.BI --chunk= X
724.BI --level= Y
725.BI --raid-devices= Z
726.I devices
727
728.PP
729This usage is similar to
730.BR --create .
731The difference is that it creates a legacy array without a superblock. With
732these arrays there is no difference between initially creating the array and
733subsequently assembling the array, except that hopefully there is useful
734data there in the second case.
735
736The level may only be 0, raid0, or linear. All devices must be listed
737and the array will be started once complete.
738
739.SH CREATE MODE
740
741.HP 12
742Usage:
743.B mdadm --create
744.I device
745.BI --chunk= X
746.BI --level= Y
747.br
748.BI --raid-devices= Z
749.I devices
750
751.PP
752This usage will initialise a new md array, associate some devices with
753it, and activate the array.
754
755This the
756.B --auto
757option is given (as described in more detail in the section on
758Assemble mode), then the md device will be created with a suitable
759device number if necessary.
760
761As devices are added, they are checked to see if they contain raid
762superblocks or filesystems. They are also checked to see if the variance in
763device size exceeds 1%.
764
765If any discrepancy is found, the array will not automatically be run, though
766the presence of a
767.B --run
768can override this caution.
769
770To create a "degraded" array in which some devices are missing, simply
771give the word "\fBmissing\fP"
772in place of a device name. This will cause
773.B mdadm
774to leave the corresponding slot in the array empty.
775For a RAID4 or RAID5 array at most one slot can be
776"\fBmissing\fP"; for a RAID6 array at most two slots.
777For a RAID1 array, only one real device needs to be given. All of the
778others can be
779"\fBmissing\fP".
780
781When creating a RAID5 array,
782.B mdadm
783will automatically create a degraded array with an extra spare drive.
784This is because building the spare into a degraded array is in general faster than resyncing
785the parity on a non-degraded, but not clean, array. This feature can
786be over-ridden with the
787.I --force
788option.
789
790'''If the
791'''.B --size
792'''option is given, it is not necessary to list any component-devices in this command.
793'''They can be added later, before a
794'''.B --run.
795'''If no
796'''.B --size
797'''is given, the apparent size of the smallest drive given is used.
798
799The General Management options that are valid with --create are:
800.TP
801.B --run
802insist on running the array even if some devices look like they might
803be in use.
804
805.TP
806.B --readonly
807start the array readonly - not supported yet.
808
809.SH MANAGE MODE
810.HP 12
811Usage:
812.B mdadm
813.I device
814.I options... devices...
815.PP
816
817This usage will allow individual devices in an array to be failed,
818removed or added. It is possible to perform multiple operations with
819on command. For example:
820.br
821.B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
822.br
823will firstly mark
824.B /dev/hda1
825as faulty in
826.B /dev/md0
827and will then remove it from the array and finally add it back
828in as a spare. However only one md array can be affected by a single
829command.
830
831.SH MISC MODE
832.HP 12
833Usage:
834.B mdadm
835.I options ...
836.I devices ...
837.PP
838
839MISC mode includes a number of distinct operations that
840operate on distinct devices. The operations are:
841.TP
842--query
843The device is examined to see if it is
844(1) an active md array, or
845(2) a component of an md array.
846The information discovered is reported.
847
848.TP
849--detail
850The device should be an active md device.
851.B mdadm
852will display a detailed description of the array.
853.B --brief
854or
855.B --scan
856will cause the output to be less detailed and the format to be
857suitable for inclusion in
858.BR /etc/mdadm.conf .
859The exit status of
860.I mdadm
861will normally be 0 unless
862.I mdadm
863failed to get useful information about the device(s). However if the
864.B --test
865option is given, then the exit status will be:
866.RS
867.TP
8680
869The array is functioning normally.
870.TP
8711
872The array has at least one failed device.
873.TP
8742
875The array has multiple failed devices and hence is unusable (raid4 or
876raid5).
877.TP
8784
879There was an error while trying to get information about the device.
880.RE
881
882.TP
883--examine
884The device should be a component of an md array.
885.B mdadm
886will read the md superblock of the device and display the contents.
887If
888.B --brief
889is given, or
890.B --scan
891then multiple devices that are components of the one array
892are grouped together and reported in a single entry suitable
893for inclusion in
894.BR /etc/mdadm.conf .
895
896Having
897.B --scan
898without listing any devices will cause all devices listed in the
899config file to be examined.
900
901.TP
902--stop
903The devices should be active md arrays which will be deactivated, as
904long as they are not currently in use.
905
906.TP
907--run
908This will fully activate a partially assembled md array.
909
910.TP
911--readonly
912This will mark an active array as read-only, providing that it is
913not currently being used.
914
915.TP
916--readwrite
917This will change a
918.B readonly
919array back to being read/write.
920
921.TP
922--scan
923For all operations except
924.BR --examine ,
925.B --scan
926will cause the operation to be applied to all arrays listed in
927.BR /proc/mdstat .
928For
929.BR --examine,
930.B --scan
931causes all devices listed in the config file to be examined.
932
933
934.SH MONITOR MODE
935
936.HP 12
937Usage:
938.B mdadm --monitor
939.I options... devices...
940
941.PP
942This usage causes
943.B mdadm
944to periodically poll a number of md arrays and to report on any events
945noticed.
946.B mdadm
947will never exit once it decides that there are arrays to be checked,
948so it should normally be run in the background.
949
950As well as reporting events,
951.B mdadm
952may move a spare drive from one array to another if they are in the
953same
954.B spare-group
955and if the destination array has a failed drive but not spares.
956
957If any devices are listed on the command line,
958.B mdadm
959will only monitor those devices. Otherwise all arrays listed in the
960configuration file will be monitored. Further, if
961.B --scan
962is given, then any other md devices that appear in
963.B /proc/mdstat
964will also be monitored.
965
966The result of monitoring the arrays is the generation of events.
967These events are passed to a separate program (if specified) and may
968be mailed to a given E-mail address.
969
970When passing event to program, the program is run once for each event
971and is given 2 or 3 command-line arguements. The first is the
972name of the event (see below). The second is the name of the
973md device which is affected, and the third is the name of a related
974device if relevant, such as a component device that has failed.
975
976If
977.B --scan
978is given, then a program or an E-mail address must be specified on the
979command line or in the config file. If neither are available, then
980.B mdadm
981will not monitor anything.
982Without
983.B --scan
984.B mdadm
985will continue monitoring as long as something was found to monitor. If
986no program or email is given, then each event is reported to
987.BR stdout .
988
989The different events are:
990
991.RS 4
992.TP
993.B DeviceDisappeared
994An md array which previously was configured appears to no longer be
995configured.
996
997.TP
998.B RebuildStarted
999An md array started reconstruction.
1000
1001.TP
1002.BI Rebuild NN
1003Where
1004.I NN
1005is 20, 40, 60, or 80, this indicates that rebuild has passed that many
1006percentage of the total.
1007
1008.TP
1009.B RebuildFinished
1010An md array that was rebuilding, isn't any more, either because it
1011finished normally or was aborted.
1012
1013.TP
1014.B Fail
1015An active component device of an array has been marked as faulty.
1016
1017.TP
1018.B FailSpare
1019A spare component device which was being rebuilt to replace a faulty
1020device has failed.
1021
1022.TP
1023.B SpareActive
1024A spare component device which was being rebuilt to replace a faulty
1025device as been successfully rebuild and has been made active.
1026
1027.TP
1028.B NewArray
1029A new md array has been detected in the
1030.B /proc/mdstat
1031file.
1032
1033.TP
1034.B DegradedArray
1035A newly noticed array appears to be degraded. This message is not
1036generated when
1037.I mdadm
1038notices a drive failure which causes degradation, but only when
1039.I mdadm
1040notices that an array is degraded when it first sees the array.
1041
1042.TP
1043.B MoveSpare
1044A spare drive has been moved from one array in a
1045.B spare-group
1046to another to allow a failed drive to be replaced.
1047
1048.TP
1049.B TestMessage
1050An array was found at startup, and the
1051.B --test
1052flag was given.
1053.RE
1054
1055Only
1056.B Fail ,
1057.B FailSpare ,
1058.B DegradedArray ,
1059and
1060.B TestMessage
1061cause Email to be sent. All events cause the program to be run.
1062The program is run with two or three arguments, they being the event
1063name, the array device and possibly a second device.
1064
1065Each event has an associated array device (e.g.
1066.BR /dev/md1 )
1067and possibly a second device. For
1068.BR Fail ,
1069.BR FailSpare ,
1070and
1071.B SpareActive
1072the second device is the relevant component device.
1073For
1074.B MoveSpare
1075the second device is the array that the spare was moved from.
1076
1077For
1078.B mdadm
1079to move spares from one array to another, the different arrays need to
1080be labelled with the same
1081.B spare-group
1082in the configuration file. The
1083.B spare-group
1084name can be any string. It is only necessary that different spare
1085groups use different names.
1086
1087When
1088.B mdadm
1089detects that an array which is in a spare group has fewer active
1090devices than necessary for the complete array, and has no spare
1091devices, it will look for another array in the same spare group that
1092has a full complement of working drive and a spare. It will then
1093attempt to remove the spare from the second drive and add it to the
1094first.
1095If the removal succeeds but the adding fails, then it is added back to
1096the original array.
1097
1098.SH GROW MODE
1099The GROW mode is used for changing the size or shape of an active
1100array.
1101For this to work, the kernel must support the necessary change.
1102Various types of growth may be added during 2.6 development, possibly
1103including restructuring a raid5 array to have more active devices.
1104
1105Currently the only support available is to change the "size" attribute
1106for arrays with redundancy, and the raid-disks attribute of RAID1
1107arrays.
1108
1109Normally when an array is build the "size" it taken from the smallest
1110of the drives. If all the small drives in an arrays are, one at a
1111time, removed and replaced with larger drives, then you could have an
1112array of large drives with only a small amount used. In this
1113situation, changing the "size" with "GROW" mode will allow the extra
1114space to start being used. If the size is increased in this way, a
1115"resync" process will start to make sure the new parts of the array
1116are synchronised.
1117
1118Note that when an array changes size, any filesystem that may be
1119stored in the array will not automatically grow to use the space. The
1120filesystem will need to be explicitly told to use the extra space.
1121
1122A RAID1 array can work with any number of devices from 1 upwards
1123(though 1 is not very useful). There may be times which you want to
1124increase or decrease the number of active devices. Note that this is
1125different to hot-add or hot-remove which changes the number of
1126inactive devices.
1127
1128When reducing the number of devices in a RAID1 array, the slots which
1129are to be removed from the array must already be vacant. That is, the
1130devices that which were in those slots must be failed and removed.
1131
1132When the number of devices is increased, any hot spares that are
1133present may be activated immediately.
1134
1135.SH EXAMPLES
1136
1137.B " mdadm --query /dev/name-of-device"
1138.br
1139This will find out if a given device is a raid array, or is part of
1140one, and will provide brief information about the device.
1141
1142.B " mdadm --assemble --scan"
1143.br
1144This will assemble and start all arrays listed in the standard confile
1145file. This command will typically go in a system startup file.
1146
1147.B " mdadm --stop --scan"
1148.br
1149This will shut down all array that can be shut down (i.e. are not
1150currently in use). This will typically go in a system shutdown script.
1151
1152.B " mdadm --follow --scan --delay=120"
1153.br
1154If (and only if) there is an Email address or program given in the
1155standard config file, then
1156monitor the status of all arrays listed in that file by
1157polling them ever 2 minutes.
1158
1159.B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
1160.br
1161Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
1162
1163.br
1164.B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1165.br
1166.B " mdadm --detail --scan >> mdadm.conf"
1167.br
1168This will create a prototype config file that describes currently
1169active arrays that are known to be made from partitions of IDE or SCSI drives.
1170This file should be reviewed before being used as it may
1171contain unwanted detail.
1172
1173.B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1174.br
1175.B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1176.ber
1177This will find what arrays could be assembled from existign IDE and
1178SCSI whole drives (not partitions) and store the information is the
1179format of a config file.
1180This file is very likely to contain unwanted detail, particularly
1181the
1182.B devices=
1183entries. It should be reviewed and edited before being used as an
1184actual config file.
1185
1186.B " mdadm --examine --brief --scan --config=partitions"
1187.br
1188.B " mdadm -Ebsc partitions"
1189.br
1190Create a list of devices by reading
1191.BR /proc/partitions ,
1192scan these for RAID superblocks, and printout a brief listing of all
1193that was found.
1194
1195.B " mdadm -Ac partitions -m 0 /dev/md0"
1196.br
1197Scan all partitions and devices listed in
1198.BR /proc/partitions
1199and assemble
1200.B /dev/md0
1201out of all such devices with a RAID superblock with a minor number of 0.
1202
1203.B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1204.br
1205If config file contains a mail address or alert program, run mdadm in
1206the background in monitor mode monitoring all md devices. Also write
1207pid of mdadm daemon to
1208.BR /var/run/mdadm .
1209
1210.B " mdadm --create --help"
1211.br
1212Providew help about the Create mode.
1213
1214.B " mdadm --config --help"
1215.br
1216Provide help about the format of the config file.
1217
1218.B " mdadm --help"
1219.br
1220Provide general help.
1221
1222
1223.SH FILES
1224
1225.SS /proc/mdstat
1226
1227If you're using the
1228.B /proc
1229filesystem,
1230.B /proc/mdstat
1231lists all active md devices with information about them.
1232.B mdadm
1233uses this to find arrays when
1234.B --scan
1235is given in Misc mode, and to monitor array reconstruction
1236on Monitor mode.
1237
1238
1239.SS /etc/mdadm.conf
1240
1241The config file lists which devices may be scanned to see if
1242they contain MD super block, and gives identifying information
1243(e.g. UUID) about known MD arrays. See
1244.BR mdadm.conf (5)
1245for more details.
1246
1247
1248.SH NOTE
1249.B mdadm
1250was previously known as
1251.BR mdctl .
1252
1253.SH SEE ALSO
1254For information on the various levels of
1255RAID, check out:
1256
1257.IP
1258.UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1259http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1260.UE
1261.PP
1262for new releases of the RAID driver check out:
1263
1264.IP
1265.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1266ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1267.UE
1268.PP
1269or
1270.IP
1271.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1272http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1273.URk
1274.PP
1275.BR mdadm.conf (5),
1276.BR md (4).
1277.PP
1278.IR raidtab (5),
1279.IR raid0run (8),
1280.IR raidstop (8),
1281.IR mkraid (8)