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